No Description

AndroidManifest.xml 537B

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