We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e37344a commit af59f65Copy full SHA for af59f65
changelog.d/5748.bugfix
@@ -0,0 +1 @@
1
+Fixes Element on Android 12+ being ineligible for URL deeplinks
vector/src/main/AndroidManifest.xml
@@ -193,6 +193,14 @@
193
194
<data android:scheme="https" />
195
<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" />
204
<data android:host="app.element.io" />
205
<data android:host="mobile.element.io" />
206
<data android:host="develop.element.io" />
0 commit comments