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:
parent
e37344a059
commit
af59f656b4
1
changelog.d/5748.bugfix
Normal file
1
changelog.d/5748.bugfix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fixes Element on Android 12+ being ineligible for URL deeplinks
|
@ -193,6 +193,14 @@
|
|||||||
|
|
||||||
<data android:scheme="https" />
|
<data android:scheme="https" />
|
||||||
<data android:host="riot.im" />
|
<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="app.element.io" />
|
||||||
<data android:host="mobile.element.io" />
|
<data android:host="mobile.element.io" />
|
||||||
<data android:host="develop.element.io" />
|
<data android:host="develop.element.io" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user