cordova-plugin-photo-library
cordova-plugin-photo-library copied to clipboard
android 10 support (SDK 29) - get error when saving an image
hi,
when setting "android-targetSdkVersion" to 29, the plugin will not work on Android 10. can you please fix the issue?
we will get EACCESS permission error
I am also getting the ENOENT File not found error. only on Android 10 :(
Add this in config.xml
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application" xmlns:android="http://schemas.android.com/apk/res/android"> <application android:requestLegacyExternalStorage="true" /> </edit-config>
I solved it after adding this code