add Android app link

This commit is contained in:
2023-06-01 00:21:14 +02:00
parent af054ac61c
commit 1e742826cf
3 changed files with 26 additions and 4 deletions

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:allowBackup="true"
@@ -17,10 +18,22 @@
android:launchMode="singleTask"
android:exported="true">
<tools:validation testUrl="https://contexted.app" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<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" />
<data
android:scheme="https"
android:host="contexted.app" />
</intent-filter>
</activity>