Skip to content

Commit

Permalink
Merge pull request #6225 from element-hq/feature/adm/android-12-deepl…
Browse files Browse the repository at this point in the history
…inks

Fixing Android 12 url deeplinks
  • Loading branch information
bmarty authored May 2, 2024
2 parents a1823b0 + 4e068a1 commit 305372c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 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
13 changes: 9 additions & 4 deletions vector/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,15 @@

<data android:scheme="https" />
<data android:host="riot.im" />
<data android:host="app.element.io" />
<data android:host="mobile.element.io" />
<data android:host="develop.element.io" />
<data android:host="staging.element.io" />
</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="*.element.io" />
</intent-filter>
</activity>

Expand Down

0 comments on commit 305372c

Please sign in to comment.