Add custom protocol deep links

This commit is contained in:
Paul Frazee 2022-06-13 22:12:43 -05:00
parent 926a2d4756
commit 09b78a4634
4 changed files with 31 additions and 0 deletions

View file

@ -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>