pbojinov
5/3/2016 - 12:19 AM

AndroidManifest.xml for React Native deeplinks using Linker

AndroidManifest.xml for React Native deeplinks using Linker

<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <!-- Accepts URIs that begin with "http://app.petar.tech/user/” -->
    <data android:scheme="http"
          android:host="app.petar.tech"
          android:pathPrefix="/user/" />
</intent-filter>