fix(android): use provider prefix to avoid conflicts other plugin providers (#510)

Co-authored-by: jcesarmobile <jcesarmobile@gmail.com>
This commit is contained in:
Loïc Le Malliaud
2020-07-16 13:08:40 +02:00
committed by GitHub
parent fd155d9705
commit eb7fc333ee
2 changed files with 6 additions and 6 deletions

View File

@@ -59,7 +59,7 @@
<config-file target="AndroidManifest.xml" parent="application">
<provider
android:name="org.apache.cordova.camera.FileProvider"
android:authorities="${applicationId}.provider"
android:authorities="${applicationId}.cordova.plugin.camera.provider"
android:exported="false"
android:grantUriPermissions="true" >
<meta-data
@@ -150,12 +150,12 @@
<js-module src="www/CameraPopoverHandle.js" name="CameraPopoverHandle">
<clobbers target="CameraPopoverHandle" />
</js-module>
<header-file src="src/osx/CDVCamera.h" />
<source-file src="src/osx/CDVCamera.m" />
<framework src="Quartz.framework" />
<framework src="AppKit.framework" />
</platform>
</plugin>