|
|
@@ -0,0 +1,692 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+
|
|
|
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools">
|
|
|
+
|
|
|
+ <uses-feature
|
|
|
+ android:name="android.hardware.camera"
|
|
|
+ android:required="false" />
|
|
|
+
|
|
|
+ <uses-permission android:name="android.permission.INTERNET" />
|
|
|
+ <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
+ <uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
+ <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
+ <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
+ <uses-permission android:name="android.permission.REORDER_TASKS" />
|
|
|
+
|
|
|
+
|
|
|
+ <uses-permission android:name="android.permission.VIBRATE" />
|
|
|
+ <uses-permission android:name="android.hardware.sensor.accelerometer" />
|
|
|
+ <uses-permission android:name="android.permission.CAMERA" />
|
|
|
+ <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
+ <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
|
|
+ <uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
+ <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
|
+ <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
|
|
+ <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
+ <uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
|
|
|
+ <uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
|
|
|
+ <uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
+
|
|
|
+ <uses-permission
|
|
|
+ android:name="android.permission.ACCESS_NOTIFICATION_POLICY" />
|
|
|
+ <uses-permission
|
|
|
+ android:name="android.permission.MANAGE_MEDIA_PROJECTION"
|
|
|
+ tools:ignore="ProtectedPermissions" />
|
|
|
+ <uses-permission
|
|
|
+ android:name="android.permission.READ_LOGS"
|
|
|
+ tools:ignore="ProtectedPermissions" />
|
|
|
+ <uses-permission
|
|
|
+ android:name="android.permission.CHANGE_CONFIGURATION"
|
|
|
+ tools:ignore="ProtectedPermissions" />
|
|
|
+ <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
|
+ <uses-permission
|
|
|
+ android:name="android.permission.READ_EXTERNAL_STORAGE"
|
|
|
+ android:maxSdkVersion="32" />
|
|
|
+ <uses-permission
|
|
|
+ android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
|
+ android:maxSdkVersion="32"
|
|
|
+ tools:ignore="ScopedStorage" />
|
|
|
+ <uses-permission android:name="android.permission.FOREGROUND_SERVICE_REMOTE_MESSAGING" />
|
|
|
+ <uses-permission android:name="android.permission.FOREGROUND_SERVICE_PHONE_CALL" />
|
|
|
+ <uses-permission android:name="android.permission.FOREGROUND_SERVICE_MICROPHONE" />
|
|
|
+ <uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION" />
|
|
|
+ <uses-permission android:name="android.permission.MANAGE_OWN_CALLS" />
|
|
|
+ <uses-permission android:name="com.huawei.android.launcher.permission.CHANGE_BADGE"/>
|
|
|
+
|
|
|
+
|
|
|
+ <application
|
|
|
+ android:name="com.bogo.android.BogoApplication"
|
|
|
+ android:allowBackup="true"
|
|
|
+ android:supportsRtl="true"
|
|
|
+ android:hardwareAccelerated="true"
|
|
|
+ android:icon="@drawable/icon_launcher"
|
|
|
+ android:allowTaskReparenting="true"
|
|
|
+ android:label="@string/app_name"
|
|
|
+ android:networkSecurityConfig="@xml/network_security_config"
|
|
|
+ android:persistent="true"
|
|
|
+ android:theme="@style/AppTheme"
|
|
|
+ tools:ignore="GoogleAppIndexingWarning">
|
|
|
+
|
|
|
+ <meta-data
|
|
|
+ android:name="com.baidu.lbsapi.API_KEY"
|
|
|
+ android:value="yours" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.home.ui.SplashActivity"
|
|
|
+ android:exported="true"
|
|
|
+ >
|
|
|
+ <intent-filter>
|
|
|
+ <action android:name="android.intent.action.MAIN" />
|
|
|
+
|
|
|
+ <category android:name="android.intent.category.DEFAULT" />
|
|
|
+ <category android:name="android.intent.category.LAUNCHER" />
|
|
|
+ </intent-filter>
|
|
|
+ </activity>
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.home.ui.HomeActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.account.ui.LoginActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustPan" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.account.ui.RegisterActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.home.ui.ForceOfflineAlertActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:theme="@style/activityDialogStyle" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.home.ui.AppNewVersionActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:theme="@style/activityDialogStyle" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.home.ui.AboutActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.account.ui.ProfileActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.account.ui.QrCodeActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.account.ui.PasswordActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.home.ui.MessageSettingActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.account.ui.EditMottoActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.account.ui.EditEmailActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.account.ui.EditGenderActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.account.ui.AccountSyncActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:theme="@style/activityDialogStyle" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.home.ui.MixedSettingActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.moment.ui.TimelineMomentActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustNothing" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.moment.ui.MomentPublishActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustPan" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.moment.ui.MomentMessageActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.moment.ui.MomentDetailedActivity"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustNothing" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.moment.ui.MineMomentActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.moment.ui.FriendMomentActivity"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.moment.ui.MomentVisibleActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.micro.ui.MicroServerWindowActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustNothing" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.message.ui.FriendChatActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustNothing" />
|
|
|
+ />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.message.ui.ChatRecordSnapshotActivity"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustNothing" />
|
|
|
+ />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.message.ui.FriendMessageTargetActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustNothing" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.message.ui.GroupMessageTargetActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustNothing" />
|
|
|
+
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.message.ui.GroupChatActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustNothing" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.message.ui.SystemMessageActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.common.ui.FileSelectorActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.message.ui.FileViewerActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.common.ui.MapLocationActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.common.ui.MapViewActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.common.ui.TextMagnifierActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.LivekitMeetingCallerActivity"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustResize"
|
|
|
+ android:taskAffinity="com.bogo.webrtc.meeting"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.LivekitMeetingCalleeActivity"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustResize"
|
|
|
+ android:taskAffinity="com.bogo.webrtc.meeting"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.PictureViewActivity"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:taskAffinity="com.bogo.webrtc.meeting"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.LivekitMeetingHomeActivity"
|
|
|
+ android:windowSoftInputMode="adjustNothing"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.MeetingIncomingActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:theme="@style/meetingIncomingDialogStyle" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.MeetingInviteMemberActivity"
|
|
|
+ android:windowSoftInputMode="adjustNothing"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.CreateDueMeetingActivity"
|
|
|
+ android:windowSoftInputMode="adjustNothing"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.LivekitJoinMeetingActivity"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.CreateFastMeetingActivity"
|
|
|
+ android:windowSoftInputMode="adjustNothing"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.MeetingRecordInfoActivity"
|
|
|
+ android:windowSoftInputMode="adjustNothing"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.MeetingVideoLivingActivity"
|
|
|
+ android:taskAffinity="com.bogo.webrtc.meeting"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.VoiceCallingActivity"
|
|
|
+ android:taskAffinity="com.bogo.webrtc.p2p"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize|screenLayout"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.VoiceIncomingCallActivity"
|
|
|
+ android:taskAffinity="com.bogo.webrtc.p2p"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.VideoCallingActivity"
|
|
|
+ android:taskAffinity="com.bogo.webrtc.p2p"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.webrtc.ui.VideoIncomingCallActivity"
|
|
|
+ android:taskAffinity="com.bogo.webrtc.p2p"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.common.ui.WebViewActivity"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.friend.ui.ContactSelectorActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="stateAlwaysHidden|adjustNothing" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.friend.ui.ProfileSelectorActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="stateAlwaysHidden|adjustNothing" />
|
|
|
+
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.message.ui.MessageForwardActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="stateHidden|adjustNothing" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.home.ui.AppSearchActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:windowSoftInputMode="stateAlwaysVisible|adjustPan"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.message.ui.MessageSearchActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:windowSoftInputMode="stateHidden|adjustPan"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.group.ui.GroupMessageSearchActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:windowSoftInputMode="stateHidden|adjustPan"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.group.ui.CreateGroupActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:windowSoftInputMode="stateAlwaysHidden|adjustNothing"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.friend.ui.FriendRequestActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.organization.ui.OrganizationActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="stateAlwaysHidden|adjustNothing" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.group.ui.GroupDetailedActivity"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.group.ui.GroupSelectorActivity"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.friend.ui.UserDetailedActivity"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustResize" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.group.ui.GroupMemberListActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:windowSoftInputMode="stateHidden"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.group.ui.GroupRobotListActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:windowSoftInputMode="stateHidden"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.group.ui.CreateRobotActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:windowSoftInputMode="stateHidden"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.group.ui.GroupRobotViewActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:windowSoftInputMode="stateHidden"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.group.ui.GroupNoticeActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:windowSoftInputMode="stateHidden"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.group.ui.GroupNoticeEditActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="adjustResize|stateAlwaysVisible" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.group.ui.InviteGroupMemberActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="stateHidden|adjustNothing" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.group.ui.GroupListActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.micro.ui.MicroServerDetailedActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.micro.ui.MicroServerListActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.moment.ui.MomentRuleActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.friend.ui.FindFriendActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:windowSoftInputMode="stateAlwaysVisible"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.friend.ui.NewFriendActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.micro.ui.FindMicroServerActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:exported="true"
|
|
|
+ android:name="com.bogo.android.message.ui.MessageSharedActivity"
|
|
|
+ android:label="@string/label_share_to_contact"
|
|
|
+ android:launchMode="singleInstance"
|
|
|
+ android:screenOrientation="portrait"
|
|
|
+ android:windowSoftInputMode="stateAlwaysHidden">
|
|
|
+ <intent-filter>
|
|
|
+ <action android:name="android.intent.action.SEND" />
|
|
|
+ <category android:name="android.intent.category.DEFAULT" />
|
|
|
+ <data android:mimeType="*/*" />
|
|
|
+ </intent-filter>
|
|
|
+ </activity>
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.common.ui.PhotoSelectorActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.common.ui.ScanCodeActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.common.ui.PhotoScreenActivity"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.common.ui.PhotoGalleryActivity"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.common.ui.VideoRecorderActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.common.ui.PhotoPreviewActivity"
|
|
|
+ android:launchMode="singleTask"
|
|
|
+ android:screenOrientation="portrait" />
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.common.ui.VideoPlayerActivity"
|
|
|
+ android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.account.ui.CountrySelectorActivity"
|
|
|
+ android:configChanges="orientation"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.account.ui.ForgotPasswordActivity"
|
|
|
+ android:configChanges="orientation"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.emoticon.ui.EmoticonMallActivity"
|
|
|
+ android:configChanges="orientation"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.emoticon.ui.EmoticonPackageActivity"
|
|
|
+ android:configChanges="orientation"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.emoticon.ui.EmoticonManageActivity"
|
|
|
+ android:configChanges="orientation"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.emoticon.ui.EmoticonViewActivity"
|
|
|
+ android:configChanges="orientation"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.note.ui.NoteListActivity"
|
|
|
+ android:configChanges="orientation"
|
|
|
+ android:windowSoftInputMode="stateHidden|adjustPan"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.note.ui.NoteSelectorActivity"
|
|
|
+ android:configChanges="orientation"
|
|
|
+ android:windowSoftInputMode="stateHidden|adjustPan"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <activity
|
|
|
+ android:name="com.bogo.android.note.ui.NoteCreateActivity"
|
|
|
+ android:configChanges="orientation"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+ <activity
|
|
|
+ android:name="com.yalantis.ucrop.UCropActivity"
|
|
|
+ android:configChanges="orientation"
|
|
|
+ android:launchMode="singleTask" />
|
|
|
+
|
|
|
+ <service
|
|
|
+ android:name="com.bogo.android.home.service.ApkDownloaderService"
|
|
|
+ android:exported="false" />
|
|
|
+
|
|
|
+
|
|
|
+ <service
|
|
|
+ android:name="com.baidu.location.f"
|
|
|
+ android:enabled="true"
|
|
|
+ android:process=":location" />
|
|
|
+
|
|
|
+ <provider
|
|
|
+ android:name="androidx.core.content.FileProvider"
|
|
|
+ android:authorities="${applicationId}.provider"
|
|
|
+ android:exported="false"
|
|
|
+ android:grantUriPermissions="true">
|
|
|
+ <meta-data
|
|
|
+ android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
+ android:resource="@xml/fileprovider" />
|
|
|
+ </provider>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- ****************************************推送配置 begin*************************************** -->
|
|
|
+ <service
|
|
|
+ android:name="com.bogo.messaging.PushService"
|
|
|
+ android:foregroundServiceType="remoteMessaging"
|
|
|
+ android:process=":push"
|
|
|
+ android:exported="false" />
|
|
|
+
|
|
|
+ <provider
|
|
|
+ android:name="com.bogo.messaging.CacheProvider"
|
|
|
+ android:authorities="${applicationId}.messaging.config.provider"
|
|
|
+ android:exported="false" />
|
|
|
+
|
|
|
+ <!-- ****************************************推送配置 end*************************************** -->
|
|
|
+
|
|
|
+
|
|
|
+ <!--消息接受广播注册-->
|
|
|
+ <receiver
|
|
|
+ android:name="com.bogo.android.message.receiver.PushMessageReceiver"
|
|
|
+ android:exported="false">
|
|
|
+ <intent-filter android:priority="0x7fffffff">
|
|
|
+ <!-- 网络变事件action targetVersion 24之前 -->
|
|
|
+
|
|
|
+ <action android:name="com.bogo.messaging.NETWORK_CHANGED" />
|
|
|
+ <!-- 收到消息事件action -->
|
|
|
+ <action android:name="com.bogo.messaging.MESSAGE_RECEIVED" />
|
|
|
+ <!-- 发送sendBody完成事件action -->
|
|
|
+ <action android:name="com.bogo.messaging.SEND_FINISHED" />
|
|
|
+ <!--重新连接事件action -->
|
|
|
+ <action android:name="com.bogo.messaging.CONNECTION_RECOVERY" />
|
|
|
+ <!-- 连接关闭事件action -->
|
|
|
+ <action android:name="com.bogo.messaging.CONNECTION_CLOSED" />
|
|
|
+ <!-- 连接失败事件action -->
|
|
|
+ <action android:name="com.bogo.messaging.CONNECT_FAILED" />
|
|
|
+ <!-- 连接成功事件action-->
|
|
|
+ <action android:name="com.bogo.messaging.CONNECT_FINISHED" />
|
|
|
+ <!-- 收到replyBody事件action -->
|
|
|
+ <action android:name="com.bogo.messaging.REPLY_RECEIVED" />
|
|
|
+
|
|
|
+ <!-- 【可选】 一些常用的系统广播,增强pushService的复活机会-->
|
|
|
+ <action android:name="android.intent.action.USER_PRESENT" />
|
|
|
+ <action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
|
|
|
+ <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
|
|
|
+ <action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
+ </intent-filter>
|
|
|
+ </receiver>
|
|
|
+
|
|
|
+ <service
|
|
|
+ android:name="com.bogo.android.webrtc.service.P2PLivingNotificationService"
|
|
|
+ android:exported="false"
|
|
|
+ android:foregroundServiceType="microphone"
|
|
|
+ />
|
|
|
+
|
|
|
+
|
|
|
+ <service
|
|
|
+ android:name="com.bogo.android.webrtc.service.P2PIncomingNotificationService"
|
|
|
+ android:exported="false"
|
|
|
+ android:foregroundServiceType="phoneCall"
|
|
|
+ />
|
|
|
+
|
|
|
+ <service
|
|
|
+ android:name="com.bogo.android.webrtc.service.RoomLivingNotificationService"
|
|
|
+ android:exported="false"
|
|
|
+ android:foregroundServiceType="microphone"
|
|
|
+ />
|
|
|
+
|
|
|
+ <service
|
|
|
+ android:name="com.bogo.android.webrtc.service.RoomIncomingNotificationService"
|
|
|
+ android:exported="false"
|
|
|
+ android:foregroundServiceType="phoneCall"
|
|
|
+ />
|
|
|
+
|
|
|
+ <service
|
|
|
+ android:name="com.bogo.android.webrtc.service.ScreenCaptureService"
|
|
|
+ android:exported="false"
|
|
|
+ android:foregroundServiceType="mediaProjection" />
|
|
|
+
|
|
|
+ <service
|
|
|
+ android:name="androidx.appcompat.app.AppLocalesMetadataHolderService"
|
|
|
+ android:enabled="true"
|
|
|
+ android:exported="true">
|
|
|
+ <meta-data
|
|
|
+ android:name="autoStoreLocales"
|
|
|
+ android:value="true"/>
|
|
|
+ </service>
|
|
|
+
|
|
|
+ </application>
|
|
|
+</manifest>
|