|
180 | 180 | <activity android:name=".features.createdirect.CreateDirectRoomActivity" />
|
181 | 181 | <activity android:name=".features.invite.InviteUsersToRoomActivity" />
|
182 | 182 | <activity android:name=".features.webview.VectorWebViewActivity" />
|
183 |
| - <activity android:name=".features.link.LinkHandlerActivity"> |
| 183 | + <activity |
| 184 | + android:name=".features.link.LinkHandlerActivity" |
| 185 | + android:exported="true"> |
184 | 186 | <intent-filter>
|
185 | 187 | <action android:name="android.intent.action.VIEW" />
|
186 | 188 |
|
|
196 | 198 | </intent-filter>
|
197 | 199 | </activity>
|
198 | 200 |
|
| 201 | + <activity-alias |
| 202 | + android:name=".features.permalink.PermalinkHandlerActivity" |
| 203 | + android:exported="true" |
| 204 | + android:launchMode="singleTask" |
| 205 | + android:targetActivity=".features.link.LinkHandlerActivity"> |
| 206 | + <intent-filter> |
| 207 | + <action android:name="android.intent.action.VIEW" /> |
| 208 | + |
| 209 | + <category android:name="android.intent.category.DEFAULT" /> |
| 210 | + <category android:name="android.intent.category.BROWSABLE" /> |
| 211 | + |
| 212 | + <data android:scheme="http" /> |
| 213 | + <data android:scheme="https" /> |
| 214 | + <data android:host="matrix.to" /> |
| 215 | + <data |
| 216 | + android:host="user" |
| 217 | + android:scheme="element" /> |
| 218 | + <data |
| 219 | + android:host="room" |
| 220 | + android:scheme="element" /> |
| 221 | + |
| 222 | + </intent-filter> |
| 223 | + </activity-alias> |
| 224 | + |
199 | 225 | <activity
|
200 | 226 | android:name=".features.share.IncomingShareActivity"
|
201 | 227 | android:parentActivityName=".features.home.HomeActivity">
|
|
230 | 256 | <activity
|
231 | 257 | android:name=".features.signout.soft.SoftLogoutActivity"
|
232 | 258 | android:windowSoftInputMode="adjustResize" />
|
233 |
| - <activity |
234 |
| - android:name=".features.permalink.PermalinkHandlerActivity" |
235 |
| - android:launchMode="singleTask"> |
236 |
| - <intent-filter> |
237 |
| - <action android:name="android.intent.action.VIEW" /> |
238 |
| - |
239 |
| - <category android:name="android.intent.category.DEFAULT" /> |
240 |
| - <category android:name="android.intent.category.BROWSABLE" /> |
241 |
| - |
242 |
| - <data android:scheme="http" /> |
243 |
| - <data android:scheme="https" /> |
244 |
| - <data android:host="matrix.to" /> |
245 |
| - <data |
246 |
| - android:host="user" |
247 |
| - android:scheme="element" /> |
248 |
| - <data |
249 |
| - android:host="room" |
250 |
| - android:scheme="element" /> |
251 |
| - |
252 |
| - </intent-filter> |
253 |
| - </activity> |
254 | 259 |
|
255 | 260 | <activity
|
256 | 261 | android:name=".features.roommemberprofile.RoomMemberProfileActivity"
|
|
271 | 276 | android:name=".features.attachments.preview.AttachmentsPreviewActivity"
|
272 | 277 | android:theme="@style/Theme.Vector.Black.AttachmentsPreview" />
|
273 | 278 | <activity
|
274 |
| - android:supportsPictureInPicture="true" |
275 |
| - android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation" |
276 | 279 | android:name=".features.call.VectorCallActivity"
|
| 280 | + android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation" |
| 281 | + android:excludeFromRecents="true" |
277 | 282 | android:launchMode="singleTask"
|
278 |
| - android:taskAffinity=".features.call.VectorCallActivity" |
279 |
| - android:excludeFromRecents="true" /> |
| 283 | + android:supportsPictureInPicture="true" |
| 284 | + android:taskAffinity=".features.call.VectorCallActivity" /> |
280 | 285 | <!-- PIP Support https://developer.android.com/guide/topics/ui/picture-in-picture -->
|
281 | 286 | <activity
|
282 | 287 | android:name=".features.call.conference.VectorJitsiActivity"
|
|
0 commit comments