Whem I’m running my app trough ionic View app the camera works.
But when I’m running it from a debug package build from ionic pro I’m getting an error.
I’m using DATA_URL because that is returning a base64-encoded string.
I’m using that because my application has to work offline so I’m storing the base64 in a SQLite table.
well then for my part I’ve got not more ideas. options you says it’s ok, reinstall you says you did…you have all edit-config tags in your config.xml? I know it has nothing to do with android but with an iOS quirks, but when some weird stuffs happens, who knows https://github.com/apache/cordova-plugin-camera
maybe try a newer version of the plugin? actual version is 3.0.0 … don’t know which cordovan-android you are using and if compatible…just check before
<plugin name="cordova-plugin-camera" spec="^3.0.0" />
<edit-config target="NSCameraUsageDescription" file="*-Info.plist" mode="merge">
<string>need camera access to take pictures</string>
</edit-config>
<edit-config target="NSPhotoLibraryUsageDescription" file="*-Info.plist" mode="merge">
<string>need to photo library access to get pictures from there</string>
</edit-config>
<edit-config target="NSLocationWhenInUseUsageDescription" file="*-Info.plist" mode="merge">
<string>need location access to find things nearby</string>
</edit-config>
<edit-config target="NSPhotoLibraryAddUsageDescription" file="*-Info.plist" mode="merge">
<string>need to photo library access to save pictures there</string>
</edit-config>
Hello, I have got the similar issue with paypal plugin, the paypal works when i run the app on devapp but when i build an apk and run in my device i get “plugin_not_installed” can you help if you know about this problem as well.