FaceDetector
FaceDetector copied to clipboard
Manifest.permission.WRITE_EXTERNAL_STORAGE granted = false
use this lib ,Manifest.permission.WRITE_EXTERNAL_STORAGE granted = false. how to fix. THX.
Have the same issue, is there any solution to this problem?
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.
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.