Skip to content

Commit af59f65

Browse files
committed
adding android 12 url deeplink support
- urls must be verified in order for deeplinks to be enabled by the system
1 parent e37344a commit af59f65

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

changelog.d/5748.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixes Element on Android 12+ being ineligible for URL deeplinks

vector/src/main/AndroidManifest.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,14 @@
193193

194194
<data android:scheme="https" />
195195
<data android:host="riot.im" />
196+
</intent-filter>
197+
<intent-filter android:autoVerify="true">
198+
<action android:name="android.intent.action.VIEW" />
199+
200+
<category android:name="android.intent.category.DEFAULT" />
201+
<category android:name="android.intent.category.BROWSABLE" />
202+
203+
<data android:scheme="https" />
196204
<data android:host="app.element.io" />
197205
<data android:host="mobile.element.io" />
198206
<data android:host="develop.element.io" />

0 commit comments

Comments
 (0)