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>