diff --git a/app/build.gradle b/app/build.gradle index 0c72dd2..7ed0188 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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 diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 8350e0e..9af6018 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -41,6 +41,17 @@ + + + + + + + + + + + diff --git a/fastlane/metadata/android/en-US/changelogs/5.txt b/fastlane/metadata/android/en-US/changelogs/5.txt index ecc2f6d..80feb52 100644 --- a/fastlane/metadata/android/en-US/changelogs/5.txt +++ b/fastlane/metadata/android/en-US/changelogs/5.txt @@ -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