No Description

AndroidManifest.xml 498B

12345678910111213141516
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.reactnativecommunity.webview">
  3. <application>
  4. <provider
  5. android:name=".RNCWebViewFileProvider"
  6. android:authorities="${applicationId}.fileprovider"
  7. android:exported="false"
  8. android:grantUriPermissions="true">
  9. <meta-data
  10. android:name="android.support.FILE_PROVIDER_PATHS"
  11. android:resource="@xml/file_provider_paths" />
  12. </provider>
  13. </application>
  14. </manifest>