Some cleanup after the package renaming thing

This commit is contained in:
Benoit Marty 2020-08-18 18:15:48 +02:00
parent 8581d06931
commit 7613073373
2 changed files with 51 additions and 50 deletions

View file

@ -1,5 +1,6 @@
/* /*
* Copyright (c) 2020 New Vector Ltd * Copyright (c) 2020 New Vector Ltd
* Copyright (C) 2018 stfalcon.com
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.

View file

@ -46,7 +46,7 @@
android:required="false" /> android:required="false" />
<application <application
android:name="im.vector.app.VectorApplication" android:name=".VectorApplication"
android:allowBackup="false" android:allowBackup="false"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" android:label="@string/app_name"
@ -62,13 +62,13 @@
android:value="9.9" /> android:value="9.9" />
<activity <activity
android:name="im.vector.app.features.MainActivity" android:name=".features.MainActivity"
android:theme="@style/AppTheme.Launcher" /> android:theme="@style/AppTheme.Launcher" />
<!-- Activity alias for the launcher Activity (must be declared after the Activity it targets) --> <!-- Activity alias for the launcher Activity (must be declared after the Activity it targets) -->
<activity-alias <activity-alias
android:name=".features.Alias" android:name=".features.Alias"
android:targetActivity="im.vector.app.features.MainActivity"> android:targetActivity=".features.MainActivity">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
@ -76,9 +76,9 @@
</intent-filter> </intent-filter>
</activity-alias> </activity-alias>
<activity android:name="im.vector.app.features.home.HomeActivity" /> <activity android:name=".features.home.HomeActivity" />
<activity <activity
android:name="im.vector.app.features.login.LoginActivity" android:name=".features.login.LoginActivity"
android:launchMode="singleTask" android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize"> android:windowSoftInputMode="adjustResize">
<!-- Add intent filter to handle redirection URL after SSO login in external browser --> <!-- Add intent filter to handle redirection URL after SSO login in external browser -->
@ -92,50 +92,50 @@
<data android:host="element" /> <data android:host="element" />
</intent-filter> </intent-filter>
</activity> </activity>
<activity android:name="im.vector.app.features.media.ImageMediaViewerActivity" /> <activity android:name=".features.media.ImageMediaViewerActivity" />
<activity <activity
android:name="im.vector.app.features.media.VectorAttachmentViewerActivity" android:name=".features.media.VectorAttachmentViewerActivity"
android:theme="@style/AppTheme.Transparent" /> android:theme="@style/AppTheme.Transparent" />
<activity android:name="im.vector.app.features.media.BigImageViewerActivity" /> <activity android:name=".features.media.BigImageViewerActivity" />
<activity <activity
android:name="im.vector.app.features.rageshake.BugReportActivity" android:name=".features.rageshake.BugReportActivity"
android:label="@string/title_activity_bug_report" /> android:label="@string/title_activity_bug_report" />
<activity <activity
android:name="im.vector.app.features.settings.VectorSettingsActivity" android:name=".features.settings.VectorSettingsActivity"
android:label="@string/title_activity_settings" android:label="@string/title_activity_settings"
android:windowSoftInputMode="adjustResize" /> android:windowSoftInputMode="adjustResize" />
<activity android:name="im.vector.app.features.media.VideoMediaViewerActivity" /> <activity android:name=".features.media.VideoMediaViewerActivity" />
<activity <activity
android:name="im.vector.app.features.crypto.keysbackup.restore.KeysBackupRestoreActivity" android:name=".features.crypto.keysbackup.restore.KeysBackupRestoreActivity"
android:label="@string/title_activity_keys_backup_setup" /> android:label="@string/title_activity_keys_backup_setup" />
<activity <activity
android:name="im.vector.app.features.crypto.keysbackup.setup.KeysBackupSetupActivity" android:name=".features.crypto.keysbackup.setup.KeysBackupSetupActivity"
android:label="@string/title_activity_keys_backup_restore" /> android:label="@string/title_activity_keys_backup_restore" />
<activity <activity
android:name="im.vector.app.features.crypto.keysbackup.settings.KeysBackupManageActivity" android:name=".features.crypto.keysbackup.settings.KeysBackupManageActivity"
android:label="@string/encryption_message_recovery" /> android:label="@string/encryption_message_recovery" />
<activity <activity
android:name="im.vector.app.features.reactions.EmojiReactionPickerActivity" android:name=".features.reactions.EmojiReactionPickerActivity"
android:label="@string/title_activity_emoji_reaction_picker" /> android:label="@string/title_activity_emoji_reaction_picker" />
<activity android:name="im.vector.app.features.roomdirectory.createroom.CreateRoomActivity" /> <activity android:name=".features.roomdirectory.createroom.CreateRoomActivity" />
<activity android:name="im.vector.app.features.roomdirectory.RoomDirectoryActivity" /> <activity android:name=".features.roomdirectory.RoomDirectoryActivity" />
<activity android:name="im.vector.app.features.roomdirectory.roompreview.RoomPreviewActivity" /> <activity android:name=".features.roomdirectory.roompreview.RoomPreviewActivity" />
<activity android:name="im.vector.app.features.home.room.filtered.FilteredRoomsActivity" /> <activity android:name=".features.home.room.filtered.FilteredRoomsActivity" />
<activity <activity
android:name="im.vector.app.features.home.room.detail.RoomDetailActivity" android:name=".features.home.room.detail.RoomDetailActivity"
android:parentActivityName="im.vector.app.features.home.HomeActivity"> android:parentActivityName=".features.home.HomeActivity">
<meta-data <meta-data
android:name="android.support.PARENT_ACTIVITY" android:name="android.support.PARENT_ACTIVITY"
android:value="im.vector.app.features.home.HomeActivity" /> android:value=".features.home.HomeActivity" />
</activity> </activity>
<activity android:name="im.vector.app.features.debug.DebugMenuActivity" /> <activity android:name=".features.debug.DebugMenuActivity" />
<activity android:name="im.vector.app.features.createdirect.CreateDirectRoomActivity" /> <activity android:name=".features.createdirect.CreateDirectRoomActivity" />
<activity android:name="im.vector.app.features.invite.InviteUsersToRoomActivity" /> <activity android:name=".features.invite.InviteUsersToRoomActivity" />
<activity android:name="im.vector.app.features.webview.VectorWebViewActivity" /> <activity android:name=".features.webview.VectorWebViewActivity" />
<activity android:name="im.vector.app.features.link.LinkHandlerActivity"> <activity android:name=".features.link.LinkHandlerActivity">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.VIEW" />
@ -150,11 +150,11 @@
</activity> </activity>
<activity <activity
android:name="im.vector.app.features.share.IncomingShareActivity" android:name=".features.share.IncomingShareActivity"
android:parentActivityName="im.vector.app.features.home.HomeActivity"> android:parentActivityName=".features.home.HomeActivity">
<meta-data <meta-data
android:name="android.support.PARENT_ACTIVITY" android:name="android.support.PARENT_ACTIVITY"
android:value="im.vector.app.features.home.HomeActivity" /> android:value=".features.home.HomeActivity" />
<intent-filter> <intent-filter>
<action android:name="android.intent.action.SEND" /> <action android:name="android.intent.action.SEND" />
@ -172,13 +172,13 @@
</intent-filter> </intent-filter>
</activity> </activity>
<activity android:name="im.vector.app.features.roomprofile.RoomProfileActivity" /> <activity android:name=".features.roomprofile.RoomProfileActivity" />
<activity android:name="im.vector.app.features.signout.hard.SignedOutActivity" /> <activity android:name=".features.signout.hard.SignedOutActivity" />
<activity <activity
android:name="im.vector.app.features.signout.soft.SoftLogoutActivity" android:name=".features.signout.soft.SoftLogoutActivity"
android:windowSoftInputMode="adjustResize" /> android:windowSoftInputMode="adjustResize" />
<activity android:name="im.vector.app.features.permalink.PermalinkHandlerActivity"> <activity android:name=".features.permalink.PermalinkHandlerActivity">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.VIEW" />
@ -192,36 +192,36 @@
</activity> </activity>
<activity <activity
android:name="im.vector.app.features.roommemberprofile.RoomMemberProfileActivity" android:name=".features.roommemberprofile.RoomMemberProfileActivity"
android:parentActivityName="im.vector.app.features.home.HomeActivity"> android:parentActivityName=".features.home.HomeActivity">
<meta-data <meta-data
android:name="android.support.PARENT_ACTIVITY" android:name="android.support.PARENT_ACTIVITY"
android:value="im.vector.app.features.home.HomeActivity" /> android:value=".features.home.HomeActivity" />
</activity> </activity>
<activity android:name="im.vector.app.features.qrcode.QrCodeScannerActivity" /> <activity android:name=".features.qrcode.QrCodeScannerActivity" />
<activity android:name="im.vector.app.features.crypto.quads.SharedSecureStorageActivity" /> <activity android:name=".features.crypto.quads.SharedSecureStorageActivity" />
<activity <activity
android:name="com.yalantis.ucrop.UCropActivity" android:name="com.yalantis.ucrop.UCropActivity"
android:screenOrientation="portrait" /> android:screenOrientation="portrait" />
<activity <activity
android:name="im.vector.app.features.attachments.preview.AttachmentsPreviewActivity" android:name=".features.attachments.preview.AttachmentsPreviewActivity"
android:theme="@style/AppTheme.AttachmentsPreview" /> android:theme="@style/AppTheme.AttachmentsPreview" />
<activity android:name="im.vector.app.features.call.VectorCallActivity" /> <activity android:name=".features.call.VectorCallActivity" />
<activity <activity
android:name="im.vector.app.features.call.conference.VectorJitsiActivity" android:name=".features.call.conference.VectorJitsiActivity"
android:configChanges="orientation|screenSize" /> android:configChanges="orientation|screenSize" />
<activity android:name="im.vector.app.features.terms.ReviewTermsActivity" /> <activity android:name=".features.terms.ReviewTermsActivity" />
<activity android:name="im.vector.app.features.widgets.WidgetActivity" /> <activity android:name=".features.widgets.WidgetActivity" />
<activity android:name="im.vector.app.features.pin.PinActivity" /> <activity android:name=".features.pin.PinActivity" />
<!-- Services --> <!-- Services -->
<service <service
android:name="im.vector.app.core.services.CallService" android:name=".core.services.CallService"
android:exported="false"> android:exported="false">
<!-- in order to get headset button events --> <!-- in order to get headset button events -->
<intent-filter> <intent-filter>
@ -230,11 +230,11 @@
</service> </service>
<service <service
android:name="im.vector.app.core.services.VectorSyncService" android:name=".core.services.VectorSyncService"
android:exported="false" /> android:exported="false" />
<service <service
android:name="im.vector.app.features.call.telecom.VectorConnectionService" android:name=".features.call.telecom.VectorConnectionService"
android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE"> android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE">
<intent-filter> <intent-filter>
<action android:name="android.telecom.ConnectionService" /> <action android:name="android.telecom.ConnectionService" />
@ -244,12 +244,12 @@
<!-- Receivers --> <!-- Receivers -->
<receiver <receiver
android:name="im.vector.app.features.call.service.CallHeadsUpActionReceiver" android:name=".features.call.service.CallHeadsUpActionReceiver"
android:exported="false" /> android:exported="false" />
<!-- Exported false, should only be accessible from this app!! --> <!-- Exported false, should only be accessible from this app!! -->
<receiver <receiver
android:name="im.vector.app.features.notifications.NotificationBroadcastReceiver" android:name=".features.notifications.NotificationBroadcastReceiver"
android:enabled="true" android:enabled="true"
android:exported="false" /> android:exported="false" />