2018-10-03 17:56:33 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-03-28 17:51:54 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-07-02 17:27:08 +02:00
|
|
|
package="im.vector.riotx">
|
2018-10-03 17:56:33 +02:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2019-10-11 16:41:04 +02:00
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
2019-12-20 17:54:02 +01:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2020-01-02 18:12:44 +01:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2020-01-22 14:19:04 +01:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
2018-10-03 17:56:33 +02:00
|
|
|
|
|
|
|
<application
|
2019-04-05 10:40:59 +02:00
|
|
|
android:name=".VectorApplication"
|
2019-03-28 17:51:54 +01:00
|
|
|
android:allowBackup="false"
|
2018-10-03 17:56:33 +02:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2019-04-08 15:15:11 +02:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2018-10-03 17:56:33 +02:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2019-03-28 17:51:54 +01:00
|
|
|
android:theme="@style/AppTheme.Light"
|
|
|
|
tools:replace="android:allowBackup">
|
2018-12-17 18:55:15 +01:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".features.MainActivity"
|
2019-06-26 12:14:10 +02:00
|
|
|
android:theme="@style/AppTheme.Launcher" />
|
|
|
|
|
|
|
|
<!-- Activity alias for the launcher Activity (must be declared after the Activity it targets) -->
|
|
|
|
<activity-alias
|
|
|
|
android:name=".features.Alias"
|
|
|
|
android:targetActivity=".features.MainActivity">
|
2018-10-03 17:56:33 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2019-06-26 12:14:10 +02:00
|
|
|
</activity-alias>
|
|
|
|
|
2018-10-03 17:56:33 +02:00
|
|
|
<activity android:name=".features.home.HomeActivity" />
|
2019-11-14 15:25:43 +01:00
|
|
|
<activity
|
|
|
|
android:name=".features.login.LoginActivity"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-04-12 13:46:59 +02:00
|
|
|
<activity android:name=".features.media.ImageMediaViewerActivity" />
|
2019-03-28 17:51:54 +01:00
|
|
|
<activity
|
|
|
|
android:name=".features.rageshake.BugReportActivity"
|
|
|
|
android:label="@string/title_activity_bug_report" />
|
2019-04-02 18:08:43 +02:00
|
|
|
<activity
|
|
|
|
android:name=".features.settings.VectorSettingsActivity"
|
|
|
|
android:label="@string/title_activity_settings"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-04-12 13:46:59 +02:00
|
|
|
<activity android:name=".features.media.VideoMediaViewerActivity" />
|
2019-05-16 10:23:57 +02:00
|
|
|
<activity
|
2019-07-02 17:27:08 +02:00
|
|
|
android:name=".features.crypto.keysbackup.restore.KeysBackupRestoreActivity"
|
2019-05-16 10:23:57 +02:00
|
|
|
android:label="@string/title_activity_keys_backup_setup" />
|
|
|
|
<activity
|
2019-07-02 17:27:08 +02:00
|
|
|
android:name=".features.crypto.keysbackup.setup.KeysBackupSetupActivity"
|
2019-05-16 10:23:57 +02:00
|
|
|
android:label="@string/title_activity_keys_backup_restore" />
|
|
|
|
<activity
|
2019-07-02 17:27:08 +02:00
|
|
|
android:name=".features.crypto.keysbackup.settings.KeysBackupManageActivity"
|
2019-05-16 10:23:57 +02:00
|
|
|
android:label="@string/encryption_message_recovery" />
|
2019-04-02 18:08:43 +02:00
|
|
|
|
2019-05-09 18:26:32 +02:00
|
|
|
<activity
|
2019-06-19 10:46:59 +02:00
|
|
|
android:name=".features.reactions.EmojiReactionPickerActivity"
|
2019-05-09 18:26:32 +02:00
|
|
|
android:label="@string/title_activity_emoji_reaction_picker" />
|
2019-07-15 17:22:46 +02:00
|
|
|
<activity android:name=".features.roomdirectory.createroom.CreateRoomActivity" />
|
2019-05-24 11:35:46 +02:00
|
|
|
<activity android:name=".features.roomdirectory.RoomDirectoryActivity" />
|
2019-05-28 15:58:30 +02:00
|
|
|
<activity android:name=".features.roomdirectory.roompreview.RoomPreviewActivity" />
|
2019-07-15 16:58:27 +02:00
|
|
|
<activity android:name=".features.home.room.filtered.FilteredRoomsActivity" />
|
2019-11-21 19:15:58 +01:00
|
|
|
<activity
|
|
|
|
android:name=".features.home.room.detail.RoomDetailActivity"
|
|
|
|
android:parentActivityName=".features.home.HomeActivity">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".features.home.HomeActivity" />
|
|
|
|
</activity>
|
2019-06-06 10:28:11 +02:00
|
|
|
<activity android:name=".features.debug.DebugMenuActivity" />
|
2019-11-14 15:34:50 +01:00
|
|
|
<activity android:name="im.vector.riotx.features.createdirect.CreateDirectRoomActivity" />
|
2019-09-13 18:21:56 +02:00
|
|
|
<activity android:name=".features.webview.VectorWebViewActivity" />
|
2019-09-16 10:58:51 +02:00
|
|
|
<activity android:name=".features.link.LinkHandlerActivity">
|
|
|
|
<intent-filter>
|
|
|
|
<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="riot.im" />
|
|
|
|
<data android:pathPrefix="/config/" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-05-24 11:35:46 +02:00
|
|
|
|
2019-10-21 18:08:42 +02:00
|
|
|
<activity android:name=".features.share.IncomingShareActivity">
|
2019-10-09 20:05:37 +02:00
|
|
|
<intent-filter>
|
2019-10-21 18:08:42 +02:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
|
2019-10-09 20:05:37 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.OPENABLE" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2019-10-21 18:08:42 +02:00
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
|
2019-10-09 20:05:37 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.OPENABLE" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-12-20 16:43:16 +01:00
|
|
|
|
2019-11-14 15:34:50 +01:00
|
|
|
<activity android:name=".features.roomprofile.RoomProfileActivity" />
|
2019-12-20 16:43:16 +01:00
|
|
|
|
2019-12-12 23:28:22 +01:00
|
|
|
<activity android:name=".features.signout.hard.SignedOutActivity" />
|
2019-12-11 18:33:16 +01:00
|
|
|
<activity
|
2019-12-12 23:28:22 +01:00
|
|
|
android:name=".features.signout.soft.SoftLogoutActivity"
|
2019-12-11 18:33:16 +01:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-11-21 19:15:58 +01:00
|
|
|
<activity android:name=".features.permalink.PermalinkHandlerActivity">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:host="matrix.to" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2020-01-15 14:57:21 +01:00
|
|
|
|
2020-01-22 14:19:04 +01:00
|
|
|
<activity
|
|
|
|
android:name=".features.roommemberprofile.RoomMemberProfileActivity"
|
2020-01-15 14:57:21 +01:00
|
|
|
android:parentActivityName=".features.home.HomeActivity">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".features.home.HomeActivity" />
|
|
|
|
</activity>
|
2019-12-20 16:43:16 +01:00
|
|
|
|
2020-01-22 14:19:04 +01:00
|
|
|
<activity android:name=".features.qrcode.QrCodeScannerActivity" />
|
|
|
|
|
2019-06-25 15:39:51 +02:00
|
|
|
<!-- Services -->
|
|
|
|
|
2019-04-02 18:08:43 +02:00
|
|
|
<service
|
|
|
|
android:name=".core.services.CallService"
|
|
|
|
android:exported="false" />
|
|
|
|
|
2019-12-10 19:52:12 +01:00
|
|
|
<service
|
|
|
|
android:name=".core.services.VectorSyncService"
|
|
|
|
android:exported="false" />
|
|
|
|
|
2019-06-25 15:39:51 +02:00
|
|
|
<!-- Receivers -->
|
|
|
|
|
|
|
|
<!-- Exported false, should only be accessible from this app!! -->
|
|
|
|
<receiver
|
|
|
|
android:name=".features.notifications.NotificationBroadcastReceiver"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
|
|
<!-- Providers -->
|
|
|
|
|
2019-05-07 14:02:15 +02:00
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.fileProvider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/riotx_provider_paths" />
|
|
|
|
</provider>
|
2018-10-03 17:56:33 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|