Skip to content

Commit

Permalink
adding android 12 url deeplink support
Browse files Browse the repository at this point in the history
- urls must be verified in order for deeplinks to be enabled by the system
  • Loading branch information
ouchadam committed Sep 13, 2022
1 parent e37344a commit af59f65
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.d/5748.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixes Element on Android 12+ being ineligible for URL deeplinks
8 changes: 8 additions & 0 deletions vector/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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" />
Expand Down

0 comments on commit af59f65

Please sign in to comment.