feat: support deep links

This commit is contained in:
Jovan Krunić
2021-11-17 14:18:27 +01:00
parent 837c69bb21
commit 2e3f6684ef
3 changed files with 28 additions and 2 deletions

View File

@@ -22,6 +22,14 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<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" />
<!-- NEXT LINE'S HOST TO BE GENERATED (SCHOOL SPECIFIC) -->
<data android:scheme="https" android:host="mobile.app.uni-frankfurt.de" />
</intent-filter>
</activity>
<provider