capacitor-plugin-filesharer
Version:
Capacitor plugin to allow file sharing on Android and iOS
15 lines (14 loc) • 553 B
text/xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.interapptive.filesharer">
<application>
<provider
android:name=".FileSharerProvider"
android:authorities="${applicationId}.filesharer.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/sharing_paths" />
</provider>
</application>
</manifest>