Skip to content

Commit 4d8c1bf

Browse files
committed
prepare for v1.1.1.190522 (5)
1 parent ef6fba1 commit 4d8c1bf

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

app/build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ android {
1313
// 1.0.1.190507 (2) Bugfix: missing read permission; port to android-x
1414
// 1.0.2.190515 (3) Bugfix: rotation; illegal filename
1515
// 1.1.0.190518 (4) Implemented Workflow: GET_CONTENT/PICK/share/SEND/SENDTO to pick/re-send a cropped photo
16-
versionCode 4
17-
versionName "1.1.0.190518"
16+
// 1.1.1.190522 (5) Errorhandling/display errormessage; delete temp files; action com.android.camera.action.CROP
17+
18+
versionCode 5
19+
versionName "1.1.1.190522"
1820
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1921

2022
// all supported locales. Note: the lib has more translations which are supressed here

app/src/main/AndroidManifest.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,17 @@
4141

4242
<data android:mimeType="image/jpeg" />
4343
</intent-filter>
44+
<intent-filter>
45+
<action android:name="com.android.camera.action.CROP"/>
46+
47+
<data android:scheme="content"/>
48+
<data android:scheme="file"/>
49+
<data android:mimeType="image/jpeg"/>
50+
51+
<category android:name="android.intent.category.DEFAULT"/>
52+
<category android:name="android.intent.category.ALTERNATIVE"/>
53+
<category android:name="android.intent.category.SELECTED_ALTERNATIVE"/>
54+
</intent-filter>
4455
</activity>
4556

4657
<activity android:name=".CropAreasSendActivity">
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
More errorhandling: display errormessage what has gone wrong #14
12
Bugfix: delete obsolete temp files #11
3+
Added support for action com.android.camera.action.CROP #8

0 commit comments

Comments
 (0)