File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,9 @@ android {
1414 // 3.0.1 (301) 2017-09-30 merged changes from "codebymikey": intercepting media links; quick previews of Bundle and array object entries
1515 // 3.0.2 (302) 2019-05-21 added action com.android.camera.action.CROP
1616 // 4.0.0 (400) 2021-05-27. Dropped android-2.1-4.1 Support. Works with Android 4.2 and newer (including android-10)
17- versionCode 400
18- versionName " 4.0.0"
17+ // 4.0.1 (401) 2021-08-08. added android.media.action.VIDEO_CAPTURE IMAGE_CAPTURE IMAGE_CAPTURE_SECURE
18+ versionCode 401
19+ versionName " 4.0.1"
1920 }
2021 buildTypes {
2122 release {
Original file line number Diff line number Diff line change 2828 <action android : name =" android.intent.action.GET_CONTENT" />
2929 <action android : name =" android.intent.action.INSERT" />
3030 <action android : name =" com.android.camera.action.REVIEW" /><!-- Used by camera to view photo taken -->
31+ <action android : name =" android.media.action.VIDEO_CAPTURE" />
32+ <action android : name =" android.media.action.IMAGE_CAPTURE" />
33+ <action android : name =" android.media.action.IMAGE_CAPTURE_SECURE" />
3134
3235 <category android : name =" android.intent.category.DEFAULT" />
3336 <category android : name =" android.intent.category.BROWSABLE" />
132135
133136 <intent-filter android : label =" @string/intent_filter_label" >
134137 <action android : name =" android.intent.action.PICK" />
138+ <action android : name =" android.media.action.VIDEO_CAPTURE" />
139+ <action android : name =" android.media.action.IMAGE_CAPTURE" />
140+ <action android : name =" android.media.action.IMAGE_CAPTURE_SECURE" />
135141
136142 <category android : name =" android.intent.category.DEFAULT" />
137143 </intent-filter >
You can’t perform that action at this time.
0 commit comments