简体   繁体   中英

React Native Customized Image Picker doesn't show gallery images on android

I have to use a multiple picker in my react native application, and I tried to use this package: react native customized image picker<\/a> with the next configuration:

ImagePicker.openPicker({
 multiple: true
}).then(images => {
 console.log(images);
});

Hey Please check your android manifest file for permission

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM