Deep Linking
Step 1: Define a URL to open your app
Step 2: Specify an Activity to handle Deep Link
<application
android:name=".YourApplication"
...
<activity
android:name="com.example.app.activity.TapDeepLinkActivity"
android:exported="true"
android:launchMode="singleTask">
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" />
<data android:host="web.taptalk.io" />
<data android:pathPrefix="/chat" />
</intent-filter>
</activity>
</application>Step 3: Opening a Specific Activity from Deep Link
Step 4: Handling Deep Link for Android 12+
Creating the assetlinks.json file
Deploying the assetlinks.json file
Last updated

