diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-06-13 22:12:43 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-06-13 22:12:43 -0500 |
commit | 09b78a46343088a2790dab067bd4fd8384957311 (patch) | |
tree | fec23c27b81ff7b0657fb4f4deff66880254476d /android/app/src | |
parent | 926a2d475664fe8b7d4848396d20406a0f68a967 (diff) | |
download | voidsky-09b78a46343088a2790dab067bd4fd8384957311.tar.zst |
Add custom protocol deep links
Diffstat (limited to 'android/app/src')
-rw-r--r-- | android/app/src/main/AndroidManifest.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 38d83125f..483dff147 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -30,6 +30,15 @@ <data android:scheme="https" /> <data android:host="pubsq.pfrazee.com" /> </intent-filter> + <!-- deep linking via custom links --> + <intent-filter> + <action android:name="android.intent.action.VIEW" /> + <category android:name="android.intent.category.DEFAULT" /> + <category android:name="android.intent.category.BROWSABLE" /> + <!-- debug scheme: pubsq://app --> + <data android:scheme="pubsq" /> + <data android:host="app" /> + </intent-filter> </activity> </application> </manifest> |