2025-10-20 10:16:44 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2025-10-24 17:52:11 +08:00
|
|
|
|
<!-- 前台定位权限 -->
|
2025-10-28 16:56:13 +08:00
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <!-- 后台定位权限(Android 10+) -->
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
|
2025-10-30 09:19:46 +08:00
|
|
|
|
<uses-permission android:name="android.permission.REORDER_TASKS" />
|
2025-12-03 20:16:07 +08:00
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
|
|
|
2025-11-18 19:39:16 +08:00
|
|
|
|
<application android:theme="@style/AppTheme">
|
2026-01-04 08:58:09 +08:00
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.PropMallActivity"
|
|
|
|
|
|
android:exported="false"
|
|
|
|
|
|
android:label="@string/title_activity_prop_mall"
|
|
|
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.GroupUserListActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.GroupChatSettingsActivity"
|
|
|
|
|
|
android:exported="true">
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
<!-- 自定义action -->
|
|
|
|
|
|
<action android:name="com.example.mainmodule.action.GROUP_CHAT_SETTINGS" />
|
|
|
|
|
|
<!-- 自定义category(可选) -->
|
|
|
|
|
|
<category android:name="com.example.mainmodule.category.DETAIL" />
|
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
</activity>
|
2025-12-06 14:47:28 +08:00
|
|
|
|
<activity
|
2025-12-19 15:51:24 +08:00
|
|
|
|
android:name=".activity.user.activity.MobilePhoneActivity"
|
2025-12-06 14:47:28 +08:00
|
|
|
|
android:exported="false" />
|
2025-12-19 15:51:24 +08:00
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".TransparentActivity"
|
|
|
|
|
|
android:exported="false"
|
|
|
|
|
|
android:theme="@style/TransparentActivityTheme" />
|
2025-11-26 15:52:46 +08:00
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.TotalRevenueActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.UserFamilyActivity"
|
|
|
|
|
|
android:exported="false" />
|
2025-11-22 18:38:49 +08:00
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.HeartCpActivity"
|
|
|
|
|
|
android:exported="false" />
|
2025-11-21 18:54:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.RelationshipActivity"
|
|
|
|
|
|
android:exported="true" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.BosomFriendActivity"
|
|
|
|
|
|
android:exported="true" />
|
2025-11-18 19:39:16 +08:00
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.UserPlaylistActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.SingerVerificationActivity"
|
|
|
|
|
|
android:exported="false" />
|
2025-10-28 16:56:13 +08:00
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.login.activity.SwitchAccountsActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.login.activity.ImproveInfoActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.login.activity.ForgetPasswordActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.login.activity.LoginActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.main.activity.MainActivity"
|
|
|
|
|
|
android:configChanges="fontScale" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.room.activity.RoomActivity"
|
|
|
|
|
|
android:alwaysRetainTaskState="true"
|
|
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
|
|
|
|
|
android:enableOnBackInvokedCallback="false"
|
|
|
|
|
|
android:exported="false"
|
2026-01-04 08:58:09 +08:00
|
|
|
|
android:persistableMode="persistAcrossReboots"
|
2025-10-28 16:56:13 +08:00
|
|
|
|
android:screenOrientation="portrait"
|
2025-10-29 16:45:31 +08:00
|
|
|
|
android:theme="@style/AppTheme"
|
2026-01-04 08:58:09 +08:00
|
|
|
|
android:windowSoftInputMode="adjustPan" /> <!-- 防止系统回收 View 层级(Android 11+) -->
|
2025-10-28 16:56:13 +08:00
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.room.activity.RedResultActivity"
|
|
|
|
|
|
android:exported="true" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.room.activity.SearchActivity"
|
|
|
|
|
|
android:exported="false" />
|
2025-10-20 10:16:44 +08:00
|
|
|
|
<activity
|
2025-10-28 16:56:13 +08:00
|
|
|
|
android:name=".activity.room.activity.RankingListActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.room.activity.PopularRoomActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.plaza.activity.DynamicDetailActivity"
|
|
|
|
|
|
android:exported="false"
|
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.plaza.activity.DynamicListActivity"
|
|
|
|
|
|
android:exported="false"
|
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.plaza.activity.ReleaseActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.AboutUsActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.WithdrawalListActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.GiftBoxRecordActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.BindCardDetailsActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.BindCardActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.AlbumDetailActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.SettingActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.CreateAlbumActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.RevenueActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.DailyTasksActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.UserHomepageActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.MyBagActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.BriefIntroductionActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.ChangeNicknameActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.CurrencyExchangeActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.WithdrawalActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.RechargeActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.MyMoneyActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.EditUserInfoActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.ChangPassActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.PersonalityActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.RealDetailActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.RoomAllowanceDetailActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.RoomAllowanceActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.RoomDetailsActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.CreatedRoomActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.MyRoomActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.PhoneReplacementActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.BlacklistActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.MessageReminderActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.NotificationActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.UnderageActivity"
|
|
|
|
|
|
android:exported="true" />
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.RealNameActivity"
|
|
|
|
|
|
android:exported="false" />
|
2025-11-12 16:42:51 +08:00
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.NoblePaymentActivity"
|
2025-11-18 19:39:16 +08:00
|
|
|
|
android:exported="false" />
|
2025-11-12 16:42:51 +08:00
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.NobleDetailsActivity"
|
2025-11-18 19:39:16 +08:00
|
|
|
|
android:exported="false" />
|
2025-11-12 16:42:51 +08:00
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.NobleTitleActivity"
|
2025-11-18 19:39:16 +08:00
|
|
|
|
android:exported="false" />
|
2025-11-12 16:42:51 +08:00
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.user.activity.GiftWallActivity"
|
2025-11-18 19:39:16 +08:00
|
|
|
|
android:exported="false" />
|
2025-10-28 19:13:52 +08:00
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.WebViewActivity"
|
|
|
|
|
|
android:exported="true">
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
|
<action android:name="com.qxcm.qxlive.PROTOCOL_WEBVIEW" />
|
2025-11-18 19:39:16 +08:00
|
|
|
|
|
2025-10-28 19:13:52 +08:00
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
</activity>
|
|
|
|
|
|
<activity
|
|
|
|
|
|
android:name=".activity.msg.OfficialNoticeActivity"
|
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
|
2025-10-28 16:56:13 +08:00
|
|
|
|
<service
|
|
|
|
|
|
android:name=".service.MediaProjectionService"
|
|
|
|
|
|
android:foregroundServiceType="mediaProjection" />
|
|
|
|
|
|
<service
|
|
|
|
|
|
android:name=".service.ForegroundService"
|
|
|
|
|
|
android:enabled="true"
|
|
|
|
|
|
android:exported="true"
|
|
|
|
|
|
android:foregroundServiceType="microphone|camera|mediaPlayback" />
|
|
|
|
|
|
<service
|
|
|
|
|
|
android:name=".service.CancelNoticeService"
|
|
|
|
|
|
android:enabled="true"
|
|
|
|
|
|
android:exported="true" />
|
2025-10-20 10:16:44 +08:00
|
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
|
|
</manifest>
|