android: switch invite join to app-link deep links
Some checks failed
CI / test (push) Failing after 2m9s

This commit is contained in:
Codex
2026-03-09 14:24:22 +03:00
parent e2a87ffb2e
commit 5c3535ef8f
8 changed files with 75 additions and 36 deletions

View File

@@ -19,6 +19,15 @@
<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:host="chat.daemonlord.ru"
android:pathPrefix="/join"
android:scheme="https" />
</intent-filter>
</activity>
</application>