FaceDetector icon indicating copy to clipboard operation
FaceDetector copied to clipboard

Manifest.permission.WRITE_EXTERNAL_STORAGE granted = false

Open bananaCaptain opened this issue 7 years ago • 3 comments

use this lib ,Manifest.permission.WRITE_EXTERNAL_STORAGE granted = false. how to fix. THX.

bananaCaptain avatar Sep 25 '18 09:09 bananaCaptain

Have the same issue, is there any solution to this problem?

CROSP avatar Feb 02 '19 19:02 CROSP

In order to fix this issue, change permissions in the AndroidManifest file to the following

    <uses-permission tools:remove="android:maxSdkVersion" android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission tools:remove="android:maxSdkVersion" android:name="android.permission.READ_EXTERNAL_STORAGE" />

@dmitry-zaitsev you should not use android:maxSdkVersion="18" this will cause issues in applications using SDK > 18.

CROSP avatar Feb 02 '19 19:02 CROSP

Huge problem there Problem already there #2 , and I agree, android:maxSdkVersion should be removed. Integrators should not have to use manifest merger capabilities to correct this behavior.

vincentnock avatar Oct 08 '20 08:10 vincentnock