<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.reactnativehotwirewebview">
  <queries>
    <intent>
      <action android:name="android.intent.action.VIEW" />
      <data android:scheme="http"/>
    </intent>
    <intent>
      <action android:name="android.intent.action.VIEW" />
      <data android:scheme="https"/>
    </intent>
    <intent>
      <action android:name="android.intent.action.VIEW" />
      <data android:scheme="mailto"/>
    </intent>
  </queries>
  <application>
    <provider
      android:name=".RNWebViewFileProvider"
      android:authorities="${applicationId}.file-provider"
      android:exported="false"
      android:grantUriPermissions="true">
      <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/file_provider_paths" />
    </provider>
  </application>

</manifest>
