RiftRift

Deep Linking

Universal Links

Once your app is registered and domain verified, Rift automatically serves the association files. You just need to configure your apps to use them.

Prerequisites

1

iOS — Associated Domains

In Xcode, go to Signing & Capabilities + Capability Associated Domains, then add:

applinks:go.yourcompany.com

Rift serves the AASA file at https://go.yourcompany.com/.well-known/apple-app-site-association

2

Android — Intent Filters

Add an intent filter to your AndroidManifest.xml:

<activity android:name=".MainActivity">
    <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"
              android:host="go.yourcompany.com" />
    </intent-filter>
</activity>

Rift serves the assetlinks file at https://go.yourcompany.com/.well-known/assetlinks.json