Error when using React Native Image Picker on Android 29.
When using Android 28, everything goes well.
Please check how to fix the code:
Change Android Manifest
android:requestLegacyExternalStorage="true"
Change Android Graddle (app/build.gradle)
subprojects { afterEvaluate {project -> if (project.hasProperty("android")) { android { compileSdkVersion 29 buildToolsVersion '29.0.3' } } } }
source link: https://github.com/react-native-image-picker/react-native-image-picker/issues/1233