Compare commits

...

2 Commits

Author SHA1 Message Date
Adam Brown
4e068a10e4 capture all element subdomains, means we can verify on the parent instead of all subs 2022-09-13 12:10:42 +01:00
Adam Brown
af59f656b4 adding android 12 url deeplink support
- urls must be verified in order for deeplinks to be enabled by the system
2022-09-13 09:50:48 +01:00
2 changed files with 10 additions and 4 deletions

1
changelog.d/5748.bugfix Normal file
View File

@ -0,0 +1 @@
Fixes Element on Android 12+ being ineligible for URL deeplinks

View File

@ -193,10 +193,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>