Skip to content

Commit

Permalink
config: Android deep link
Browse files Browse the repository at this point in the history
  • Loading branch information
reasje committed Oct 30, 2024
1 parent e682792 commit 6aae53e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,18 @@
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data
android:host="mxc1usd.com"
android:pathPrefix="/app/" />
<data android:host="mxc1usd.com" android:pathPrefix="/app/" />

<data android:scheme="https"/>
</intent-filter>

<!-- Deep Link -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="moonbase" android:host="mxc1usd.com" android:pathPrefix="/app/" />
</intent-filter>
</activity>

<provider android:name="androidx.core.content.FileProvider" android:authorities="${applicationId}.provider" android:exported="false" android:grantUriPermissions="true">
Expand Down

0 comments on commit 6aae53e

Please sign in to comment.