RedApparat / FaceDetector

Face detection for your Android app
Apache License 2.0
1.17k stars 197 forks source link

Manifest.permission.WRITE_EXTERNAL_STORAGE granted = false #33

Open bananaCaptain opened 6 years ago

bananaCaptain commented 6 years ago

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

CROSP commented 5 years ago

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

CROSP commented 5 years ago

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.

vincentnock commented 4 years ago

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.