Issues with Camera access

Hi all

I’m having a fair amount of trouble with a new app. Via Ionic View (and also when testing via a remote debugging tool such as GapDebug) - I am able to easily access the device’s camera. When I deploy to the Google Play store, whenever I attempt to use the same feature, nothing happens. I have a suspicion that this may surround permissions, because when the App is published, I view the App Page on Google Play, scroll to “Permissions” and “View Details” it only shows “Version 2.0.7 can access: Other full network access” -

I have the following set in my AndroidManifest.xml file:









Does anyone have any ideas why my camera cannot be accessed? Thanks in advance!

<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-feature android:name="android.hardware.telephony" android:required="true" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT" />
<uses-feature android:name="android.hardware.camera" android:required="true" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

Not sure why the XML entries are hidden from the above post - here they are