Skip to content

Commit

Permalink
prepare for v1.1.1.190522 (5)
Browse files Browse the repository at this point in the history
  • Loading branch information
k3b committed May 21, 2019
1 parent ef6fba1 commit 4d8c1bf
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ android {
// 1.0.1.190507 (2) Bugfix: missing read permission; port to android-x
// 1.0.2.190515 (3) Bugfix: rotation; illegal filename
// 1.1.0.190518 (4) Implemented Workflow: GET_CONTENT/PICK/share/SEND/SENDTO to pick/re-send a cropped photo
versionCode 4
versionName "1.1.0.190518"
// 1.1.1.190522 (5) Errorhandling/display errormessage; delete temp files; action com.android.camera.action.CROP

versionCode 5
versionName "1.1.1.190522"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

// all supported locales. Note: the lib has more translations which are supressed here
Expand Down
11 changes: 11 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,17 @@

<data android:mimeType="image/jpeg" />
</intent-filter>
<intent-filter>
<action android:name="com.android.camera.action.CROP"/>

<data android:scheme="content"/>
<data android:scheme="file"/>
<data android:mimeType="image/jpeg"/>

<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.ALTERNATIVE"/>
<category android:name="android.intent.category.SELECTED_ALTERNATIVE"/>
</intent-filter>
</activity>

<activity android:name=".CropAreasSendActivity">
Expand Down
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/5.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
More errorhandling: display errormessage what has gone wrong #14
Bugfix: delete obsolete temp files #11
Added support for action com.android.camera.action.CROP #8

0 comments on commit 4d8c1bf

Please sign in to comment.