mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-21 17:05:39 +03:00
Merge pull request #6225 from element-hq/feature/adm/android-12-deeplinks
Fixing Android 12 url deeplinks
This commit is contained in:
commit
305372cafc
2 changed files with 10 additions and 4 deletions
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
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue