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