File tree 5 files changed +5
-11
lines changed
java/com/vansuita/pickimage
5 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,12 @@ buildscript {
9
9
}
10
10
11
11
android {
12
- compileSdkVersion 30
12
+ compileSdkVersion 31
13
13
buildToolsVersion ' 28.0.2'
14
14
defaultConfig {
15
15
applicationId ' com.vansuita.pickimage.sample'
16
16
minSdkVersion 14
17
- targetSdkVersion 30
17
+ targetSdkVersion 31
18
18
versionCode 4
19
19
versionName " 1.0"
20
20
}
Original file line number Diff line number Diff line change 12
12
android : theme =" @style/AppTheme" >
13
13
<activity
14
14
android : name =" .act.SampleActivity"
15
- android : screenOrientation =" sensorPortrait" >
15
+ android : screenOrientation =" sensorPortrait"
16
+ android : exported =" true" >
16
17
<intent-filter >
17
18
<action android : name =" android.intent.action.MAIN" />
18
19
Original file line number Diff line number Diff line change 6
6
<uses-feature android : name =" android.hardware.camera" />
7
7
<uses-feature android : name =" android.hardware.camera.autofocus" />
8
8
9
- <uses-permission android : name =" android.permission.WRITE_EXTERNAL_STORAGE" />
10
9
11
10
12
11
<application
13
12
android : configChanges =" orientation"
14
13
android : label =" @string/app_name"
15
- android : requestLegacyExternalStorage =" true"
16
14
android : screenOrientation =" portrait" >
17
15
18
16
<provider
Original file line number Diff line number Diff line change @@ -265,7 +265,6 @@ protected void launchCamera() {
265
265
}
266
266
267
267
protected void launchGallery () {
268
- if (resolver .requestGalleryPermissions (this ))
269
268
resolver .launchGallery (this , setup .getGalleryChooserTitle ());
270
269
}
271
270
Original file line number Diff line number Diff line change @@ -233,8 +233,7 @@ public void launchSystemChooser(Fragment listener) {
233
233
234
234
private String [] getAllPermissionsNeeded () {
235
235
return new String []{
236
- Manifest .permission .CAMERA ,
237
- Manifest .permission .WRITE_EXTERNAL_STORAGE };
236
+ Manifest .permission .CAMERA };
238
237
}
239
238
240
239
public boolean wasCameraPermissionDeniedForever () {
@@ -255,9 +254,6 @@ public boolean requestCameraPermissions(Fragment listener) {
255
254
return requestPermissions (listener , getAllPermissionsNeeded ());
256
255
}
257
256
258
- public boolean requestGalleryPermissions (Fragment listener ) {
259
- return requestPermissions (listener , Manifest .permission .WRITE_EXTERNAL_STORAGE );
260
- }
261
257
262
258
/**
263
259
* resquest permission to use camera and write files
You can’t perform that action at this time.
0 commit comments