2020-04-02 10:43:40 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
package="com.yizhuan.erban">
|
|
|
|
|
|
|
|
|
|
<!-- 应用内安装软件权限 oppo vivo 手机,需要加这个东西才能 在安装未知应用列表出现 -->
|
|
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
|
|
|
|
<!-- bugly所需权限 -->
|
2020-05-13 19:20:09 +08:00
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<!-- ShareSdk权限申请 -->
|
|
|
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
|
|
|
|
|
|
|
|
|
<!-- Required -->
|
|
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2020-06-22 14:47:34 +08:00
|
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.READ_PHONE_STATE"
|
|
|
|
|
tools:node="remove" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
|
|
<!-- 云信权限声明 -->
|
|
|
|
|
<!-- 控制呼吸灯,振动器等,用于新消息提醒 -->
|
|
|
|
|
<uses-permission android:name="android.permission.FLASHLIGHT" />
|
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" /> <!-- 外置存储存取权限 -->
|
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!-- 多媒体相关 -->
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
2020-07-30 14:11:19 +08:00
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
|
2020-07-30 14:11:19 +08:00
|
|
|
|
<uses-permission android:name="android.permission.REORDER_TASKS" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
|
|
<uses-feature android:name="android.hardware.camera" />
|
|
|
|
|
<uses-feature android:name="android.hardware.camera.autofocus" />
|
|
|
|
|
|
|
|
|
|
<!-- 如果需要实时音视频通话模块,下面的权限也是必须的。否则,可以不加 -->
|
|
|
|
|
<uses-feature
|
|
|
|
|
android:glEsVersion="0x00020000"
|
|
|
|
|
android:required="true" /> <!-- SDK 权限申明, 第三方 APP 接入时,请将 com.netease.nim.demo 替换为自己的包名 -->
|
|
|
|
|
<!-- 和下面的 uses-permission 一起加入到你的 AndroidManifest 文件中。 -->
|
|
|
|
|
<permission
|
|
|
|
|
android:name="${applicationId}.permission.RECEIVE_MSG"
|
|
|
|
|
android:protectionLevel="signature" /> <!-- 接收 SDK 消息广播权限, 第三方 APP 接入时,请将 com.netease.nim.demo 替换为自己的包名 -->
|
2020-07-30 14:11:19 +08:00
|
|
|
|
<uses-permission android:name="com.xteam.xchat.permission.RECEIVE_MSG" />
|
|
|
|
|
|
|
|
|
|
<!-- 云信集成小米推送 start -->
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<permission
|
|
|
|
|
android:name="${applicationId}.permission.MIPUSH_RECEIVE"
|
|
|
|
|
android:protectionLevel="signature" />
|
2020-07-30 14:11:19 +08:00
|
|
|
|
<uses-permission android:name="${applicationId}.permission.MIPUSH_RECEIVE" />
|
|
|
|
|
<!-- 云信集成小米推送 end -->
|
|
|
|
|
|
|
|
|
|
<uses-sdk tools:overrideLibrary="com.huawei.android.hms.base,com.huawei.android.hms.push" /><!-- 云信集成华为推送 -->
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="com.coloros.mcs.permission.RECIEVE_MCS_MESSAGE" /><!-- 云信集成oppo推送 -->
|
|
|
|
|
<uses-permission android:name="com.heytap.mcs.permission.RECIEVE_MCS_MESSAGE" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
|
|
<!-- 云信集成魅族推送 start -->
|
|
|
|
|
<!-- 兼容flyme5.0以下版本,魅族内部集成pushSDK必填,不然无法收到消息,将{你的包名} 改开发者App的包名 -->
|
|
|
|
|
<uses-permission android:name="com.meizu.flyme.push.permission.RECEIVE" />
|
|
|
|
|
|
|
|
|
|
<permission
|
|
|
|
|
android:name="${applicationId}.push.permission.MESSAGE"
|
|
|
|
|
android:protectionLevel="signature" />
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="${applicationId}.push.permission.MESSAGE" /> <!-- 兼容flyme3.0配置权限 -->
|
|
|
|
|
<uses-permission android:name="com.meizu.c2dm.permission.RECEIVE" />
|
|
|
|
|
|
|
|
|
|
<permission
|
|
|
|
|
android:name="${applicationId}.permission.C2D_MESSAGE"
|
|
|
|
|
android:protectionLevel="signature" />
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="${applicationId}.permission.C2D_MESSAGE" />
|
|
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:name=".application.XChatApplication"
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:icon="@mipmap/app_logo"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:largeHeap="true"
|
2020-05-05 17:06:10 +08:00
|
|
|
|
android:requestLegacyExternalStorage="true"
|
2020-04-02 10:43:40 +08:00
|
|
|
|
android:resizeableActivity="true"
|
2020-12-30 17:51:40 +08:00
|
|
|
|
android:supportsRtl="true"
|
2020-04-02 10:43:40 +08:00
|
|
|
|
android:theme="@style/MyMaterialTheme"
|
|
|
|
|
android:usesCleartextTraffic="true"
|
|
|
|
|
tools:replace="android:name, android:allowBackup">
|
2020-05-12 12:31:13 +08:00
|
|
|
|
|
2021-04-12 15:38:26 +08:00
|
|
|
|
<meta-data
|
|
|
|
|
android:name="design_width_in_dp"
|
|
|
|
|
android:value="375"/>
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="design_height_in_dp"
|
|
|
|
|
android:value="667"/>
|
|
|
|
|
|
2020-05-12 12:31:13 +08:00
|
|
|
|
<meta-data
|
|
|
|
|
android:name="CHANNEL"
|
|
|
|
|
android:value="official" />
|
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<!-- 刘海屏适配 begin -->
|
|
|
|
|
<!-- 小米 -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="notch.config"
|
|
|
|
|
android:value="portrait|landscape" /> <!-- 华为 -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.notch_support"
|
|
|
|
|
android:value="true" />
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.max_aspect"
|
|
|
|
|
android:value="2.4" /> <!-- 刘海屏适配 end -->
|
2020-07-30 14:11:19 +08:00
|
|
|
|
|
2020-08-04 20:39:21 +08:00
|
|
|
|
<provider
|
|
|
|
|
android:name=".utils.BuglyFileProvider"
|
|
|
|
|
android:authorities="${applicationId}.fileProvider"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true"
|
|
|
|
|
tools:replace="name,authorities,exported,grantUriPermissions">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/provider_paths"
|
2020-12-30 17:51:40 +08:00
|
|
|
|
tools:replace="name,resource" />
|
2020-08-04 20:39:21 +08:00
|
|
|
|
</provider>
|
|
|
|
|
|
2020-07-30 14:11:19 +08:00
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<!-- 云信配置 begin ##################################################### -->
|
|
|
|
|
<!--
|
|
|
|
|
APP key, 可以在这里设置,也可以在 SDKOptions 中提供。
|
|
|
|
|
如果 SDKOptions 中提供了,取 SDKOptions 中的值。
|
|
|
|
|
-->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.netease.nim.appKey"
|
2020-04-08 16:44:03 +08:00
|
|
|
|
android:value="09bde8b3d86b98a6612bc3fc92709799" /> <!-- 声明云信后台服务,如需保持后台推送,使用独立进程效果会更好。
|
|
|
|
|
ca46478c438dda51d25306f52fe7506b
|
|
|
|
|
09bde8b3d86b98a6612bc3fc92709799
|
|
|
|
|
-->
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<service
|
|
|
|
|
android:name="com.netease.nimlib.service.NimService"
|
|
|
|
|
android:process=":core" /> <!-- 运行后台辅助服务 -->
|
|
|
|
|
<service
|
|
|
|
|
android:name="com.netease.nimlib.service.NimService$Aux"
|
|
|
|
|
android:process=":core" /> <!-- 声明云信后台辅助服务 -->
|
|
|
|
|
<service
|
|
|
|
|
android:name="com.netease.nimlib.job.NIMJobService"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE"
|
|
|
|
|
android:process=":core" />
|
|
|
|
|
<!--
|
|
|
|
|
云信SDK的监视系统启动和网络变化的广播接收器,用户开机自启动以及网络变化时候重新登录,
|
|
|
|
|
保持和 NimService 同一进程
|
|
|
|
|
-->
|
|
|
|
|
<receiver
|
|
|
|
|
android:name="com.netease.nimlib.service.NimReceiver"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:process=":core">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver> <!-- 云信进程间通信 Receiver -->
|
|
|
|
|
<receiver android:name="com.netease.nimlib.service.ResponseReceiver" /> <!-- 云信进程间通信service -->
|
|
|
|
|
<service android:name="com.netease.nimlib.service.ResponseService" /> <!-- 申明本地电话状态(通话状态)的广播接收器,第三方APP集成时音视频模块时,如果需要在App中处理网络通话与本地电话的交互请加上此接收器 -->
|
|
|
|
|
<!-- 在Demo的示例代码中是在Application进行了网络通话与本地电话的互斥处理 -->
|
|
|
|
|
<receiver android:name=".reciever.IncomingCallReceiver">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.PHONE_STATE" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
|
|
|
|
<receiver android:name=".reciever.NotificationClickReceiver" /> <!-- 云信进程间通信provider -->
|
2020-07-30 14:11:19 +08:00
|
|
|
|
|
|
|
|
|
<!-- 云信集成oppo推送 start -->
|
2020-05-08 15:59:14 +08:00
|
|
|
|
<service
|
|
|
|
|
android:name="com.netease.nimlib.mixpush.oppo.OppoPushService"
|
|
|
|
|
android:permission="com.coloros.mcs.permission.SEND_MCS_MESSAGE">
|
|
|
|
|
<intent-filter>
|
2020-07-30 14:11:19 +08:00
|
|
|
|
<action android:name="com.coloros.mcs.action.RECEIVE_MCS_MESSAGE" />
|
2020-05-08 15:59:14 +08:00
|
|
|
|
</intent-filter>
|
|
|
|
|
</service>
|
|
|
|
|
<service
|
|
|
|
|
android:name="com.netease.nimlib.mixpush.oppo.OppoAppPushService"
|
|
|
|
|
android:permission="com.heytap.mcs.permission.SEND_MCS_MESSAGE">
|
|
|
|
|
<intent-filter>
|
2020-07-30 14:11:19 +08:00
|
|
|
|
<action android:name="com.heytap.mcs.action.RECEIVE_MCS_MESSAGE" />
|
|
|
|
|
</intent-filter>
|
2020-08-17 19:45:50 +08:00
|
|
|
|
</service>
|
|
|
|
|
|
2020-12-30 17:51:40 +08:00
|
|
|
|
<service
|
|
|
|
|
android:name=".push.OppoPushService"
|
2020-08-17 19:45:50 +08:00
|
|
|
|
android:permission="com.coloros.mcs.permission.SEND_MCS_MESSAGE">
|
|
|
|
|
<intent-filter>
|
2020-12-30 17:51:40 +08:00
|
|
|
|
<action android:name="com.coloros.mcs.action.RECEIVE_MCS_MESSAGE" />
|
2020-08-17 19:45:50 +08:00
|
|
|
|
</intent-filter>
|
|
|
|
|
</service>
|
|
|
|
|
<!-- 云信集成oppo推送 end -->
|
2020-07-30 14:11:19 +08:00
|
|
|
|
|
|
|
|
|
<!-- 云信集成华为推送 start -->
|
|
|
|
|
<service
|
|
|
|
|
android:name="com.netease.nimlib.mixpush.hw.HWPushService"
|
|
|
|
|
android:exported="false">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="com.huawei.push.action.MESSAGING_EVENT" />
|
2020-05-08 15:59:14 +08:00
|
|
|
|
</intent-filter>
|
|
|
|
|
</service>
|
2020-07-30 14:11:19 +08:00
|
|
|
|
<!-- 云信集成华为推送 end -->
|
|
|
|
|
|
|
|
|
|
<service android:name="com.netease.nimlib.service.ResponseService" />
|
2020-05-08 15:59:14 +08:00
|
|
|
|
|
2020-08-04 20:39:21 +08:00
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<!-- 云信集成小米推送 start -->
|
2020-07-30 14:11:19 +08:00
|
|
|
|
<!-- 配置的service和receiver -->
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<provider
|
|
|
|
|
android:name="com.netease.nimlib.ipc.NIMContentProvider"
|
|
|
|
|
android:authorities="${applicationId}.ipc.provider"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:process=":core" /> <!-- 配置的service和receiver -->
|
|
|
|
|
<service
|
|
|
|
|
android:name="com.xiaomi.push.service.XMPushService"
|
|
|
|
|
android:enabled="true"
|
|
|
|
|
android:process=":mixpush" />
|
|
|
|
|
<service
|
|
|
|
|
android:name="com.xiaomi.push.service.XMJobService"
|
|
|
|
|
android:enabled="true"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE"
|
|
|
|
|
android:process=":mixpush" /> <!-- 注:此service必须在3.0.1版本以后(包括3.0.1版本)加入 -->
|
|
|
|
|
<service
|
|
|
|
|
android:name="com.xiaomi.mipush.sdk.PushMessageHandler"
|
|
|
|
|
android:enabled="true"
|
|
|
|
|
android:exported="true" />
|
|
|
|
|
<service
|
|
|
|
|
android:name="com.xiaomi.mipush.sdk.MessageHandleService"
|
|
|
|
|
android:enabled="true" /> <!-- 注:此service必须在2.2.5版本以后(包括2.2.5版本)加入 -->
|
|
|
|
|
<receiver
|
|
|
|
|
android:name="com.xiaomi.push.service.receivers.NetworkStatusReceiver"
|
|
|
|
|
android:exported="true">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
|
|
|
|
<receiver
|
|
|
|
|
android:name="com.xiaomi.push.service.receivers.PingReceiver"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:process=":mixpush">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="com.xiaomi.push.PING_TIMER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
|
|
|
|
<receiver
|
|
|
|
|
android:name="com.netease.nimlib.mixpush.mi.MiPushReceiver"
|
|
|
|
|
android:exported="true">
|
|
|
|
|
<intent-filter android:priority="0x7fffffff">
|
|
|
|
|
<action android:name="com.xiaomi.mipush.RECEIVE_MESSAGE" />
|
|
|
|
|
<action android:name="com.xiaomi.mipush.MESSAGE_ARRIVED" />
|
|
|
|
|
<action android:name="com.xiaomi.mipush.ERROR" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
|
|
|
|
<receiver android:name=".push.MiPushReceiver">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="com.xiaomi.mipush.RECEIVE_MESSAGE" />
|
|
|
|
|
<action android:name="com.xiaomi.mipush.MESSAGE_ARRIVED" />
|
|
|
|
|
<action android:name="com.xiaomi.mipush.ERROR" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver> <!-- 云信集成小米推送 end -->
|
2020-07-30 14:11:19 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 云信继承vivo推送 start-->
|
2020-07-27 18:00:04 +08:00
|
|
|
|
<service
|
2020-07-30 14:11:19 +08:00
|
|
|
|
android:name="com.vivo.push.sdk.service.CommandClientService"
|
|
|
|
|
android:exported="true" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.vivo.push.sdk.LinkProxyClientActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
|
|
|
|
|
<receiver android:name="com.netease.nimlib.mixpush.vivo.VivoPushReceiver">
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<intent-filter>
|
2020-07-30 14:11:19 +08:00
|
|
|
|
<!-- 接收 push 消息 -->
|
|
|
|
|
<action android:name="com.vivo.pushclient.action.RECEIVE" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
</intent-filter>
|
2020-07-30 14:11:19 +08:00
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.vivo.push.api_key"
|
2021-08-20 15:05:30 +08:00
|
|
|
|
android:value="e9f2d1e70ff06164d4269381e1a90ca0" />
|
2020-07-30 14:11:19 +08:00
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.vivo.push.app_id"
|
2021-08-20 15:05:30 +08:00
|
|
|
|
android:value="105482750" />
|
2020-07-30 14:11:19 +08:00
|
|
|
|
<!-- 云信集成vivo推送 end -->
|
|
|
|
|
|
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<!-- 云信集成魅族推送 start -->
|
|
|
|
|
<!-- 配置的service和receiver -->
|
|
|
|
|
<receiver android:name="com.netease.nimlib.mixpush.mz.MZPushReceiver">
|
|
|
|
|
<intent-filter android:priority="0x7fffffff">
|
|
|
|
|
|
|
|
|
|
<!-- 接收push消息 -->
|
|
|
|
|
<action android:name="com.meizu.flyme.push.intent.MESSAGE" />
|
|
|
|
|
<!-- 接收register消息 -->
|
|
|
|
|
<action android:name="com.meizu.flyme.push.intent.REGISTER.FEEDBACK" />
|
|
|
|
|
<!-- 接收unregister消息 -->
|
|
|
|
|
<action android:name="com.meizu.flyme.push.intent.UNREGISTER.FEEDBACK" />
|
|
|
|
|
<!-- 兼容低版本Flyme3推送服务配置 -->
|
|
|
|
|
<action android:name="com.meizu.c2dm.intent.REGISTRATION" />
|
|
|
|
|
<action android:name="com.meizu.c2dm.intent.RECEIVE" />
|
|
|
|
|
|
|
|
|
|
<category android:name="${applicationId}" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
|
|
|
|
<receiver android:name=".push.MeizuPushReceiver">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="com.meizu.flyme.push.intent.MESSAGE" />
|
|
|
|
|
<action android:name="com.meizu.flyme.push.intent.REGISTER.FEEDBACK" />
|
|
|
|
|
<action android:name="com.meizu.flyme.push.intent.UNREGISTER.FEEDBACK" />
|
|
|
|
|
</intent-filter>
|
2020-07-30 14:11:19 +08:00
|
|
|
|
</receiver>
|
|
|
|
|
<!-- 云信集成魅族推送 end -->
|
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<!-- 云信配置 end ##################################################### -->
|
|
|
|
|
<!-- <!– 安卓保活配置 –> -->
|
|
|
|
|
<!-- <service -->
|
|
|
|
|
<!-- android:name="com.netease.cosine.core.CosineService" -->
|
|
|
|
|
<!-- android:process=":cosine" /> -->
|
|
|
|
|
<!-- <receiver -->
|
|
|
|
|
<!-- android:name="com.netease.cosine.target.CosineReceiver" -->
|
|
|
|
|
<!-- android:exported="true" -->
|
|
|
|
|
<!-- android:process=":cosine" /> -->
|
|
|
|
|
<!-- <meta-data -->
|
|
|
|
|
<!-- android:name="com.netease.cosine.target" -->
|
|
|
|
|
<!-- android:value="" /> -->
|
|
|
|
|
<!-- <meta-data -->
|
|
|
|
|
<!-- android:name="com.netease.cosine.target.receiver" -->
|
|
|
|
|
<!-- android:value="com.netease.nimlib.service.NimReceiver" /> -->
|
|
|
|
|
<!-- 云信#####################################################配置 -->
|
|
|
|
|
<!-- autolayout####################################################配置 -->
|
2020-04-07 16:41:24 +08:00
|
|
|
|
<!--Vivo Push需要配置的service、activity-->
|
|
|
|
|
<!--配置的service, activity, receiver-->
|
2020-05-08 15:59:14 +08:00
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<meta-data
|
|
|
|
|
android:name="design_width"
|
|
|
|
|
android:value="768" />
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="design_height"
|
|
|
|
|
android:value="1280" />
|
|
|
|
|
<!-- Autolayout####################################################配置 -->
|
|
|
|
|
|
|
|
|
|
<!-- LinkedMe ####################################################配置 -->
|
2020-05-05 17:06:10 +08:00
|
|
|
|
<!-- <meta-data-->
|
|
|
|
|
<!-- android:name="linkedme.sdk.key"-->
|
|
|
|
|
<!-- android:value="978cd79c98264f836450afda1228762e" /> <!– LinkedMe####################################################配置 –>-->
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<!-- TakePhoto申明 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.soundcloud.android.crop.CropImageActivity"
|
|
|
|
|
android:screenOrientation="portrait" /> <!-- tinker配置 begin ########################################################## -->
|
|
|
|
|
<provider
|
2020-04-24 15:14:59 +08:00
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
2020-04-02 10:43:40 +08:00
|
|
|
|
android:authorities="${applicationId}.fileprovider"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/provider_paths" />
|
|
|
|
|
</provider> <!-- 支付宝支付需要注册 -->
|
|
|
|
|
<!-- 注释这个声明,禁用支付宝h5支付 -->
|
2020-12-30 17:51:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="com.alipay.sdk.app.H5PayActivity"
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|navigation|screenSize"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="behind"
|
|
|
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
2020-08-04 20:39:21 +08:00
|
|
|
|
|
2020-08-24 16:14:01 +08:00
|
|
|
|
<activity android:name=".push.HWPushMiddleActivity">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2020-12-30 17:51:40 +08:00
|
|
|
|
|
2020-08-24 16:14:01 +08:00
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2020-12-30 17:51:40 +08:00
|
|
|
|
|
2020-08-24 16:14:01 +08:00
|
|
|
|
<data
|
|
|
|
|
android:host="com.huawei.codelabpush"
|
|
|
|
|
android:path="/deeplink"
|
2021-08-18 16:56:15 +08:00
|
|
|
|
android:scheme="yinyoupushscheme" />
|
2020-08-24 16:14:01 +08:00
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2020-08-04 20:39:21 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="com.tencent.bugly.beta.ui.BetaActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize|locale"
|
|
|
|
|
android:theme="@android:style/Theme.Translucent" />
|
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="com.alipay.sdk.auth.AuthActivity"
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|navigation"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:screenOrientation="behind"
|
|
|
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.yizhuan.xchat_android_core.pay.PaymentActivity"
|
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
|
|
|
|
|
<!-- tinker配置 end ########################################################## -->
|
|
|
|
|
<!-- 支付相关配置 -->
|
|
|
|
|
<!-- 微信支付需要注册 -->
|
|
|
|
|
<activity-alias
|
|
|
|
|
android:name="${applicationId}.wxapi.WXPayEntryActivity"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:targetActivity="com.yizhuan.xchat_android_core.pay.PaymentActivity" />
|
|
|
|
|
<!-- 支付相关配置 -->
|
2020-07-27 18:00:04 +08:00
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<!-- shareSDK配置 begin ####################################################### -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="Mob-AppKey"
|
2021-01-11 16:43:01 +08:00
|
|
|
|
android:value="32075fcbba527" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<meta-data
|
|
|
|
|
android:name="Mob-AppSecret"
|
2021-01-11 16:43:01 +08:00
|
|
|
|
android:value="9db6e523d459ebd5e102ff2c261f640a" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.mob.tools.MobUIShell"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name="cn.sharesdk.tencent.qq.ReceiveActivity"
|
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:noHistory="true">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<data android:scheme="tencent1109606637" />
|
|
|
|
|
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
|
2020-05-05 17:06:10 +08:00
|
|
|
|
<!-- <activity xmlns:tools="http://schemas.android.com/tools"-->
|
|
|
|
|
<!-- android:name="cn.sharesdk.wechat.utils.WechatHandlerActivity"-->
|
|
|
|
|
<!-- android:configChanges="keyboardHidden|orientation|screenSize"-->
|
|
|
|
|
<!-- android:exported="false"-->
|
|
|
|
|
<!-- tools:node="merge" />-->
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
2020-05-05 17:06:10 +08:00
|
|
|
|
<!-- <activity-alias xmlns:tools="http://schemas.android.com/tools"-->
|
|
|
|
|
<!-- android:name="${applicationId}.wxapi.WXEntryActivity"-->
|
|
|
|
|
<!-- android:exported="true"-->
|
|
|
|
|
<!-- android:targetActivity="cn.sharesdk.wechat.utils.WechatHandlerActivity"-->
|
|
|
|
|
<!-- tools:node="merge" />-->
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<!-- 为了兼容小程序返回的问题,声明WXEntryActivity,并把之前的 WechatHandlerActivity注释 -->
|
|
|
|
|
<activity
|
2021-04-14 19:06:24 +08:00
|
|
|
|
android:name="com.mango.yinyou.wxapi.WXEntryActivity"
|
2020-04-02 10:43:40 +08:00
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
|
android:exported="true" />
|
|
|
|
|
|
|
|
|
|
<!-- shareSDK配置 end ####################################################### -->
|
|
|
|
|
<service
|
|
|
|
|
android:name=".service.DaemonService"
|
|
|
|
|
android:enabled="true" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".other.activity.SplashActivity"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/SplashTheme">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
2020-12-16 10:46:56 +08:00
|
|
|
|
<!-- URI Scheme方式 在dashboard配置中,请保持与ios的URI Scheme相同 -->
|
|
|
|
|
<!--
|
|
|
|
|
如果程序已存在与此完全相同的data配置,即只包含scheme并且值完全相同,
|
|
|
|
|
则需要考虑发起的intent会出现相同应用图标的选择对话框的情况
|
|
|
|
|
参考集成文档:https://www.linkedme.cc/docs/page4.html#link1
|
|
|
|
|
-->
|
|
|
|
|
<intent-filter>
|
|
|
|
|
|
|
|
|
|
<!-- 此处scheme值需要替换为后台设置中的scheme值 -->
|
|
|
|
|
<data
|
|
|
|
|
android:host="linkedme"
|
2021-01-11 16:43:01 +08:00
|
|
|
|
android:scheme="yinyouapp" />
|
2020-12-16 10:46:56 +08:00
|
|
|
|
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
|
|
<!-- APP Links方式,Android 23版本及以后支持 -->
|
|
|
|
|
<intent-filter android:autoVerify="true">
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
<!-- 以下pathPrefix值需要替换为后台设置中 App ID 的值 -->
|
|
|
|
|
<data
|
|
|
|
|
android:host="lkme.cc"
|
2021-01-11 16:43:01 +08:00
|
|
|
|
android:pathPrefix="/brG"
|
2020-12-16 10:46:56 +08:00
|
|
|
|
android:scheme="https" />
|
|
|
|
|
<data
|
|
|
|
|
android:host="lkme.cc"
|
2021-01-11 16:43:01 +08:00
|
|
|
|
android:pathPrefix="/brG"
|
2020-12-16 10:46:56 +08:00
|
|
|
|
android:scheme="http" />
|
|
|
|
|
</intent-filter>
|
2020-04-02 10:43:40 +08:00
|
|
|
|
</activity>
|
2020-04-09 21:29:09 +08:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.login.LoginPhoneActivity"
|
|
|
|
|
android:label="输入手机号界面"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
2020-04-10 16:48:04 +08:00
|
|
|
|
android:name=".ui.login.LoginCodeActivity"
|
2020-04-09 21:29:09 +08:00
|
|
|
|
android:label="输入验证码界面"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-05-11 19:53:01 +08:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.login.BindPhoneActivity"
|
|
|
|
|
android:label="绑定手机号界面"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.login.BindCodeActivity"
|
|
|
|
|
android:label="绑定输入验证码界面"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2021-04-22 17:52:31 +08:00
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".UserGuideActivity"
|
|
|
|
|
android:label="引导页"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.user.ScrollingActivity"
|
|
|
|
|
android:label="@string/title_activity_scrolling"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.search.SearchActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".MainActivity"
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
2021-01-11 11:41:23 +08:00
|
|
|
|
android:label="音游"
|
2020-04-02 10:43:40 +08:00
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:screenOrientation="portrait"
|
2021-03-12 16:29:01 +08:00
|
|
|
|
android:windowSoftInputMode="adjustPan|stateAlwaysHidden" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.keepalive.OnePiexlActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/OnePixelActivity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".MiddleActivity"
|
|
|
|
|
android:noHistory="true"
|
|
|
|
|
android:screenOrientation="portrait">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="linkedme.sdk.auto_link_keys"
|
|
|
|
|
android:value="linkedme" />
|
|
|
|
|
</activity>
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".NimMiddleActivity"
|
|
|
|
|
android:noHistory="true"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.activity.AVRoomActivity"
|
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
|
android:label="聊天室"
|
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/AVRoomTheme"
|
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.activity.RoomSettingActivity"
|
|
|
|
|
android:label="房间设置"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.activity.RoomManagerListActivity"
|
|
|
|
|
android:label="管理员"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.activity.RoomBlackListActivity"
|
|
|
|
|
android:label="黑名单"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.yizhuan.tutu.music.activity.AddLocalMusicListActivity"
|
|
|
|
|
android:label="添加本地音乐"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/AVRoomTheme" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.yizhuan.tutu.music.activity.MusicListActivity"
|
|
|
|
|
android:label="音乐"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/AVRoomTheme" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.login.AddUserInfoActivity"
|
|
|
|
|
android:label="资料完善"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.login.ModifyInfoActivity"
|
|
|
|
|
android:label="修改界面"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.user.UserInfoModifyActivity"
|
|
|
|
|
android:label="修改个人信息"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.user.UserModifyPhotosActivity"
|
|
|
|
|
android:label="修改相册"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.user.UserInfoActivity"
|
|
|
|
|
android:label="用户信息"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".audio.AudioRecordActivity"
|
|
|
|
|
android:label="录音"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2021-07-22 14:26:37 +08:00
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.pay.ChargeActivity"
|
|
|
|
|
android:label="充值"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.pay.CDKEYChargeActivity"
|
|
|
|
|
android:label="兑换码充值"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-04-18 17:27:09 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".home.activity.CollectionRoomActivity"
|
|
|
|
|
android:label="收藏房间"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-04-24 20:28:47 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".home.activity.HomeMoreRoomActivity"
|
|
|
|
|
android:label="房间"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.wallet.ExchangeGoldActivity"
|
2020-05-07 16:39:56 +08:00
|
|
|
|
android:label="兑换钻石"
|
2020-04-02 10:43:40 +08:00
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.setting.SettingActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.relation.AttentionListActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.relation.FansListActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.withdraw.WithdrawActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<!-- 提现绑定银行卡 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.withdraw.bankcard.BindWithdrawBankCardActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.withdraw.WithdrawRuleActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.withdraw.BinderAlipayActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.user.AboutActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.user.ShowPhotoActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".bills.activities.TotalBillsActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".bills.activities.WithdrawBillsActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".bills.activities.ChargeBillsActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".bills.activities.ChatBillsActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.setting.FeedbackActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.setting.LabActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.webview.CommonWebViewActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".bills.activities.RedBagBillsActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".bills.activities.BillGiftExpendActivity"
|
|
|
|
|
android:label="礼物支出"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".bills.activities.BillGiftInComeActivity"
|
|
|
|
|
android:label="礼物收入"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".bills.activities.BillNobleActivity"
|
|
|
|
|
android:label="@string/bill_noble_open"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.activity.RoomInviteActivity"
|
|
|
|
|
android:label="抱人上麦用户列表"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.im.avtivity.NimP2PMessageActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:label="单聊界面"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.im.avtivity.AddBlackListActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:label="增加到黑名单的界面"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.im.avtivity.BlackListManageActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:label="黑名单管理界面"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".decoration.view.MyDecorationActivity"
|
|
|
|
|
android:label="座驾"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-08-10 12:51:17 +08:00
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".decoration.view.DecorationStoreActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
2020-04-30 15:13:04 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.user.UserGiftActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".friend.view.SelectFriendActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".family.view.activity.FamilyPlazaActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" /> <!-- android:launchMode="singleTask" -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".family.view.activity.FamilyHomeActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".family.view.activity.FamilySearchActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".family.view.activity.FamilyListActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".family.view.activity.FamilyManageActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".family.view.activity.FamilyCurrencyActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".family.view.activity.FamilyMemberListActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".family.view.activity.FamilyInfoActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".family.view.activity.FamilyMemberSearchActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".team.view.NimTeamMessageActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".team.view.CreateTeamMessageActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".team.view.AddMemberActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".team.view.NimTeamManagementActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".team.view.TeamMemberListActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".team.view.TeamMemberSearchListActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".team.view.AddMemberSearchActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".team.view.TeamWeeklyBillActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".team.view.TeamWeeklyBillSearchActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".luckymoney.view.LuckyMoneyCreationActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustPan" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".luckymoney.view.LuckyMoneyDetailActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".family.view.activity.FamilyMemberCurrencyActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ErbanTakePhotoActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".team.view.UpdateTeamNameActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".family.view.activity.FamilySelectFriendActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".family.view.activity.FamilyTextInputActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".family.view.activity.FamilyGameListActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".treasure_box.activity.TreasureBoxActivity"
|
2020-05-08 14:56:38 +08:00
|
|
|
|
android:theme="@style/dialog_web_view_activity" />
|
2020-09-15 00:10:39 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".treasure_box.activity.BoxRankingActivity"
|
|
|
|
|
android:theme="@style/room_message_activity" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".treasure_box.activity.TreasureBoxHonourActivity"
|
2020-05-08 14:56:38 +08:00
|
|
|
|
android:theme="@style/dialog_web_view_activity" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
|
|
<activity android:name=".ui.setting.VerifyPhoneActivity" />
|
|
|
|
|
<activity android:name=".ui.setting.ModifyPwdActivity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.widget.LevelUpDialog"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:theme="@style/dialogactivity" />
|
2021-01-13 14:49:31 +08:00
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity android:name=".home.activity.NewUserListActivity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.widget.RecallDialog"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/dialog_activity_close_inside" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".public_chat_hall.activity.PublicChatHallHomeActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:label="公聊大厅"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".public_chat_hall.activity.PublicChatHallAitFriendsActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
|
android:label="公聊大厅选择提醒的人"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.user.decorationsend.DecorationSendActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.activity.RoomRankListActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.activity.RoomOnlineUserActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.ktv.KtvSelectSongActivity"
|
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.ktv.KtvRoomListActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.ktv.KtvSearchSongActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="adjustResize|stateHidden" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.ktv.KtvSongListActivity"
|
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".public_chat_hall.activity.PublicChatHallRelatedToMeActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".public_chat_hall.activity.AitFriendsSearchActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.login.ShowBindPhoneActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.activity.RoomTitleEditActivity"
|
|
|
|
|
android:label="@string/title_room_title_edit"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.activity.CreatePKActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.activity.RecordForPKActivity"
|
|
|
|
|
android:screenOrientation="portrait" /> <!-- 模厅 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.ModuleHallActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2021-05-06 18:59:46 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.ModuleClanActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.IncomeStatisticsActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-11-19 20:43:33 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.ClanIncomeActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-11-20 15:38:38 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.HallMemberListActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.HallNameSettingActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.team.activity.CreateHallTeamActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustNothing" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.team.activity.SelectTeamMemberActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.team.activity.TeamInfoShowActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.team.activity.TeamEditActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
2020-10-15 18:25:47 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.RemoveMemberListActivity"
|
2020-04-02 10:43:40 +08:00
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.AdminListActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.AdminAddActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.AuthSettingActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.MemberSearchActivity"
|
|
|
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.activity.CpRoomInviteActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.game.MatchActivity"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.game.PlayGameActivity"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/AVRoomTheme"
|
|
|
|
|
android:windowSoftInputMode="stateHidden" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.HallSearchActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.income.IncomeDetailActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.team.activity.HallTeamMessageActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.team.activity.HTeamMemberListActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.yizhuan.tutu.mentoring_relationship.activity.MentoringRelationshipActivity"
|
|
|
|
|
android:label="师徒关系"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" /> <!-- 推荐位 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".avroom.recommendcard.MyRecommendCardActivity"
|
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".home.activity.AllGameActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".home.activity.UserMatchActivity"
|
|
|
|
|
android:screenOrientation="portrait" /> <!-- 房间内私聊 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.yizhuan.tutu.room_chat.activity.NimRoomP2PMessageActivity"
|
|
|
|
|
android:theme="@style/room_message_activity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.yizhuan.tutu.room_chat.activity.RoomMsgActivity"
|
|
|
|
|
android:theme="@style/room_message_activity" />
|
2020-09-10 12:49:45 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="com.yizhuan.tutu.room_chat.activity.RoomNewbieActivity"
|
|
|
|
|
android:theme="@style/room_message_activity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.yizhuan.tutu.room_chat.activity.RoomNewbieMessageActivity"
|
|
|
|
|
android:theme="@style/room_message_activity" />
|
2020-07-30 14:11:19 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="com.yizhuan.tutu.room_chat.activity.RoomInviteFansActivity"
|
|
|
|
|
android:theme="@style/room_message_activity" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name="com.yizhuan.tutu.room_chat.activity.NimTeamRoomMessageActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/room_message_activity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.yizhuan.tutu.room_chat.activity.NimHallTeamRoomMessageActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/room_message_activity" /> <!-- 房间内私聊 -->
|
|
|
|
|
<!-- 萝卜-签到-任务 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".bills.activities.BillGiftIncomeGroupActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".radish.activity.RadishRecordActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".radish.signin.SignInActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".radish.task.activity.TaskCenterActivity"
|
|
|
|
|
android:screenOrientation="portrait" /> <!-- 萝卜-签到-任务 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.patriarch.PatriarchModeActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.patriarch.PatriarchPwdActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateVisible" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".guide.GuideActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/AVRoomTheme" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".audio.MyVoiceActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".audio.RecordingVoiceActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".audio.VoiceMatchActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".miniworld.activity.MiniWorldGuestPageActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-04-16 15:55:44 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".miniworld.activity.TopicMainActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".miniworld.activity.MiniWorldEditActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".miniworld.activity.MiniWorldMemberListActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".miniworld.activity.MiniWorldTeamMessageActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".miniworld.activity.MWTeamRoomMessageAct"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/room_message_activity" /> <!-- 房间内私聊 -->
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".miniworld.activity.MiniWorldGroupThemeActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".miniworld.activity.MiniWorldActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-04-16 15:55:44 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".miniworld.activity.AllTopicActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".miniworld.activity.MiniWorldSearchActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".miniworld.activity.MiniWorldMainActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity android:name=".ui.im.friend.ActFriendList" />
|
|
|
|
|
|
|
|
|
|
<!-- 银行卡列表 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".bank_card.activity.BankCardListActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<!-- 解除绑定银行卡 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".bank_card.activity.BankCardListUnbindActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<!-- 绑定银行卡 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".bank_card.activity.BankCardBindActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<!-- 隐私政策 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".bank_card.activity.AddBankCardAgreementActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.tongdaxing.erban.sadmin.RoomSAdminManagerActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".home.fragment.CommunityNoticeAct"
|
2020-04-07 16:41:24 +08:00
|
|
|
|
android:exported="true"
|
2020-04-02 10:43:40 +08:00
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<!-- 社区 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".community.publish.view.PublishActivity"
|
|
|
|
|
android:launchMode="singleTop"
|
2020-05-05 17:06:10 +08:00
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustNothing" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".community.dynamic.view.DynamicDetailActivity"
|
2020-05-05 17:06:10 +08:00
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".community.photo.PreviewPhotoActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".community.photo.BigPhotoActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<!-- 知乎相册 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.zhihu.matisse.ui.MatisseActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.zhihu.matisse.internal.ui.AlbumPreviewActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.zhihu.matisse.internal.ui.SelectedPreviewActivity"
|
2020-05-05 17:06:10 +08:00
|
|
|
|
android:screenOrientation="portrait" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.wallet.sendgold.SendGoldActivity"
|
2020-05-05 17:06:10 +08:00
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
|
|
<!-- 隐私设置 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.setting.PrivacySettingActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<!-- 通知提醒设置 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.setting.NoticeSettingActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
2020-04-07 16:41:24 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".quick_pass.QuickPassLoginAct"
|
|
|
|
|
android:label="一键登录"
|
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:screenOrientation="portrait" />
|
2020-05-05 17:06:10 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.webview.DialogWebViewActivity"
|
|
|
|
|
android:theme="@style/dialog_web_view_activity" />
|
2021-01-25 19:44:19 +08:00
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.webview.DatingRuleWebViewActivity"
|
|
|
|
|
android:theme="@style/dialog_web_view_activity" />
|
2021-01-28 22:54:33 +08:00
|
|
|
|
|
2021-01-21 18:49:10 +08:00
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.webview.TarotPayWebViewActivity"
|
|
|
|
|
android:theme="@style/dialog_web_view_activity" />
|
2020-12-30 17:51:40 +08:00
|
|
|
|
<!-- Fix bug Only fullscreen opaque activities can request orientation -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.sdk.base.module.permission.PermissionActivity"
|
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar"
|
|
|
|
|
tools:remove="android:screenOrientation" />
|
2021-04-16 17:30:22 +08:00
|
|
|
|
<activity android:name=".ui.login.LoginPasswordActivity" />
|
|
|
|
|
<activity android:name=".ui.setting.ResetPasswordActivity" />
|
2020-04-07 16:41:24 +08:00
|
|
|
|
|
2021-03-09 23:58:19 +08:00
|
|
|
|
<activity
|
2021-03-17 00:46:15 +08:00
|
|
|
|
android:name="com.idlefish.flutterboost.containers.FlutterBoostActivity"
|
|
|
|
|
android:theme="@style/Theme.AppCompat"
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
|
2021-03-09 23:58:19 +08:00
|
|
|
|
android:hardwareAccelerated="true"
|
2021-03-25 21:33:57 +08:00
|
|
|
|
android:screenOrientation="portrait"
|
2021-03-17 00:46:15 +08:00
|
|
|
|
android:windowSoftInputMode="adjustResize" >
|
|
|
|
|
<meta-data android:name="io.flutter.embedding.android.SplashScreenDrawable" android:resource="@drawable/bg_flutter_splash"/>
|
|
|
|
|
|
|
|
|
|
</activity>
|
|
|
|
|
<meta-data android:name="flutterEmbedding"
|
|
|
|
|
android:value="2">
|
|
|
|
|
</meta-data>
|
2021-03-09 23:58:19 +08:00
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|