adding android 12 url deeplink support

- urls must be verified in order for deeplinks to be enabled by the system
This commit is contained in:
Adam Brown 2022-06-01 15:47:08 +01:00
parent e37344a059
commit af59f656b4
2 changed files with 9 additions and 0 deletions

1
changelog.d/5748.bugfix Normal file
View File

@ -0,0 +1 @@
Fixes Element on Android 12+ being ineligible for URL deeplinks

View File

@ -193,6 +193,14 @@
<data android:scheme="https" />
<data android:host="riot.im" />
</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" />
<data android:host="app.element.io" />
<data android:host="mobile.element.io" />
<data android:host="develop.element.io" />