2018-10-03 18:56:33 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-03-28 19:51:54 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-07-02 18:27:08 +03:00
|
|
|
package="im.vector.riotx">
|
2018-10-03 18:56:33 +03:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
|
|
|
<application
|
2019-04-05 11:40:59 +03:00
|
|
|
android:name=".VectorApplication"
|
2019-03-28 19:51:54 +03:00
|
|
|
android:allowBackup="false"
|
2018-10-03 18:56:33 +03:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2019-04-08 16:15:11 +03:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2018-10-03 18:56:33 +03:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
2019-03-28 19:51:54 +03:00
|
|
|
android:theme="@style/AppTheme.Light"
|
|
|
|
tools:replace="android:allowBackup">
|
2018-12-17 20:55:15 +03:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".features.MainActivity"
|
2019-06-26 13:14:10 +03: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 18:56:33 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2019-06-26 13:14:10 +03:00
|
|
|
</activity-alias>
|
|
|
|
|
2018-10-03 18:56:33 +03:00
|
|
|
<activity android:name=".features.home.HomeActivity" />
|
2018-12-17 20:55:15 +03:00
|
|
|
<activity android:name=".features.login.LoginActivity" />
|
2019-04-12 14:46:59 +03:00
|
|
|
<activity android:name=".features.media.ImageMediaViewerActivity" />
|
2019-03-28 19:51:54 +03:00
|
|
|
<activity
|
|
|
|
android:name=".features.rageshake.BugReportActivity"
|
|
|
|
android:label="@string/title_activity_bug_report" />
|
2019-04-02 19:08:43 +03:00
|
|
|
<activity
|
|
|
|
android:name=".features.settings.VectorSettingsActivity"
|
|
|
|
android:label="@string/title_activity_settings"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2019-04-12 14:46:59 +03:00
|
|
|
<activity android:name=".features.media.VideoMediaViewerActivity" />
|
2019-05-16 11:23:57 +03:00
|
|
|
<activity
|
|
|
|
android:name=".features.crypto.verification.SASVerificationActivity"
|
|
|
|
android:label="@string/title_activity_verify_device" />
|
|
|
|
<activity
|
2019-07-02 18:27:08 +03:00
|
|
|
android:name=".features.crypto.keysbackup.restore.KeysBackupRestoreActivity"
|
2019-05-16 11:23:57 +03:00
|
|
|
android:label="@string/title_activity_keys_backup_setup" />
|
|
|
|
<activity
|
2019-07-02 18:27:08 +03:00
|
|
|
android:name=".features.crypto.keysbackup.setup.KeysBackupSetupActivity"
|
2019-05-16 11:23:57 +03:00
|
|
|
android:label="@string/title_activity_keys_backup_restore" />
|
|
|
|
<activity
|
2019-07-02 18:27:08 +03:00
|
|
|
android:name=".features.crypto.keysbackup.settings.KeysBackupManageActivity"
|
2019-05-16 11:23:57 +03:00
|
|
|
android:label="@string/encryption_message_recovery" />
|
2019-04-02 19:08:43 +03:00
|
|
|
|
2019-05-09 19:26:32 +03:00
|
|
|
<activity
|
2019-06-19 11:46:59 +03:00
|
|
|
android:name=".features.reactions.EmojiReactionPickerActivity"
|
2019-05-09 19:26:32 +03:00
|
|
|
android:label="@string/title_activity_emoji_reaction_picker" />
|
2019-05-24 12:35:46 +03:00
|
|
|
<activity android:name=".features.roomdirectory.RoomDirectoryActivity" />
|
2019-05-28 16:58:30 +03:00
|
|
|
<activity android:name=".features.roomdirectory.roompreview.RoomPreviewActivity" />
|
2019-05-15 20:44:06 +03:00
|
|
|
<activity android:name=".features.home.room.detail.RoomDetailActivity" />
|
2019-06-06 11:28:11 +03:00
|
|
|
<activity android:name=".features.debug.DebugMenuActivity" />
|
2019-05-24 12:35:46 +03:00
|
|
|
|
2019-06-25 16:39:51 +03:00
|
|
|
<!-- Services -->
|
|
|
|
|
2019-04-02 19:08:43 +03:00
|
|
|
<service
|
|
|
|
android:name=".core.services.CallService"
|
|
|
|
android:exported="false" />
|
|
|
|
|
2019-06-25 16:39:51 +03: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 15:02:15 +03: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 18:56:33 +03:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|