About Ionic Permission in Playstore

I have a problem in building android apk in play store, i’m used cordova camera plugin and file transfer concept in my app its is working good on debug mode and showing all permissions in app manager, but when i am uploaded after
play store,when the app is not working properly. it not pick my images in my gallery. so guys give me some solution to rectify this problem

Hello @abdulionic ,
If your app close after you click choose from gallery or camera. Also if you get error when you upload your apk to google play please add these to config.xml (upper than platform=“android”)
Please update cordova camera npm.
Mine: 4.1.0


<edit-config file="*-Info.plist" mode="merge" target="NSCameraUsageDescription">
        <string>need camera access to take pictures</string>
    </edit-config>
    <edit-config file="*-Info.plist" mode="merge" target="NSPhotoLibraryUsageDescription">
        <string>need photo library access to get pictures from there</string>
    </edit-config>
    <edit-config file="*-Info.plist" mode="merge" target="NSLocationWhenInUseUsageDescription">
        <string>need location access to find things nearby</string>
    </edit-config>
    <edit-config file="*-Info.plist" mode="merge" target="NSPhotoLibraryAddUsageDescription">
        <string>need photo library access to save pictures there</string>
    </edit-config>