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所需权限 -->
|
|
|
|
|
<uses-permission android:name="android.permission.READ_LOGS" />
|
|
|
|
|
|
|
|
|
|
<!-- ShareSdk权限申请 -->
|
|
|
|
|
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
|
|
|
|
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
|
|
|
|
<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_FINE_LOCATION" />
|
|
|
|
|
<uses-permission android:name="android.permission.GET_TASKS" />
|
|
|
|
|
<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" />
|
|
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
|
|
|
|
|
|
|
|
<!-- 云信权限声明 -->
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
|
|
|
|
|
|
|
<!-- 控制呼吸灯,振动器等,用于新消息提醒 -->
|
|
|
|
|
<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.READ_PHONE_STATE" /> <!-- 如果需要实时音视频通话模块,下面的权限也是必须的。否则,可以不加 -->
|
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
|
|
|
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
|
|
|
|
|
|
|
|
|
|
<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 替换为自己的包名 -->
|
|
|
|
|
<uses-permission android:name="com.xteam.xchat.permission.RECEIVE_MSG" /> <!-- 云信集成小米推送 start -->
|
|
|
|
|
<permission
|
|
|
|
|
android:name="${applicationId}.permission.MIPUSH_RECEIVE"
|
|
|
|
|
android:protectionLevel="signature" />
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="${applicationId}.permission.MIPUSH_RECEIVE" /> <!-- 云信集成小米推送 end -->
|
|
|
|
|
<!-- 云信集成魅族推送 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" />
|
|
|
|
|
|
2020-04-07 16:41:24 +08:00
|
|
|
|
<!--vivo Push需要的权限-->
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
|
|
2020-04-02 10:43:40 +08:00
|
|
|
|
<application
|
|
|
|
|
android:name=".application.XChatApplication"
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:icon="@mipmap/app_logo"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:largeHeap="true"
|
|
|
|
|
android:resizeableActivity="true"
|
|
|
|
|
android:theme="@style/MyMaterialTheme"
|
|
|
|
|
android:usesCleartextTraffic="true"
|
|
|
|
|
tools:replace="android:name, android:allowBackup">
|
|
|
|
|
<!-- 高德地图 begin -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.amap.api.v2.apikey"
|
|
|
|
|
android:value="50ab4ea0fed58ae8b99a6a7914cab197" />
|
|
|
|
|
|
|
|
|
|
<service android:name="com.amap.api.location.APSService" />
|
|
|
|
|
<!-- 高德地图 end -->
|
|
|
|
|
<!-- 刘海屏适配 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 -->
|
|
|
|
|
<!-- 云信配置 begin ##################################################### -->
|
|
|
|
|
<!--
|
|
|
|
|
APP key, 可以在这里设置,也可以在 SDKOptions 中提供。
|
|
|
|
|
如果 SDKOptions 中提供了,取 SDKOptions 中的值。
|
|
|
|
|
-->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.netease.nim.appKey"
|
|
|
|
|
android:value="ca46478c438dda51d25306f52fe7506b" /> <!-- 声明云信后台服务,如需保持后台推送,使用独立进程效果会更好。 -->
|
|
|
|
|
<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 -->
|
|
|
|
|
<!-- 云信集成小米推送 start -->
|
|
|
|
|
<!-- android:authorities="{包名}.ipc.provider", 请将com.netease.nim.demo替换为自己的包名 -->
|
|
|
|
|
<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 -->
|
|
|
|
|
<!-- 云信集成华为推送 start -->
|
|
|
|
|
<provider
|
|
|
|
|
android:name="com.huawei.hms.update.provider.UpdateProvider"
|
|
|
|
|
android:authorities="${applicationId}.hms.update.provider"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true" /> <!-- 云信华为推送消息广播 -->
|
|
|
|
|
<receiver android:name="com.netease.nimlib.mixpush.hw.HWPushReceiver">
|
|
|
|
|
<intent-filter android:priority="0x7fffffff">
|
|
|
|
|
<action android:name="com.huawei.android.push.intent.REGISTRATION" />
|
|
|
|
|
<action android:name="com.huawei.android.push.intent.RECEIVE" />
|
|
|
|
|
<action android:name="com.huawei.android.push.intent.CLICK" />
|
|
|
|
|
<action android:name="com.huawei.intent.action.PUSH_STATE" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="CS_cloud_ablitity"
|
|
|
|
|
android:value="successRateAnalytics" />
|
|
|
|
|
</receiver> <!-- 兼容性广播 -->
|
|
|
|
|
<receiver android:name="com.huawei.hms.support.api.push.PushEventReceiver">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
|
|
|
|
|
<!-- 接收通道发来的通知栏消息,兼容老版本Push -->
|
|
|
|
|
<action android:name="com.huawei.intent.action.PUSH" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver> <!-- 填入华为推送平台配置的应用appid -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.huawei.hms.client.appid"
|
|
|
|
|
android:value="100435303" />
|
|
|
|
|
|
|
|
|
|
<receiver android:name=".push.HwPushMessageReceiver">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="com.huawei.android.push.intent.REGISTRATION" />
|
|
|
|
|
<action android:name="com.huawei.android.push.intent.RECEIVE" />
|
|
|
|
|
<action android:name="com.huawei.android.push.intent.CLICK" />
|
|
|
|
|
<action android:name="com.huawei.intent.action.PUSH_STATE" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver> <!-- 云信集成华为推送 end -->
|
|
|
|
|
<!-- 云信集成魅族推送 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>
|
|
|
|
|
</receiver> <!-- 云信集成魅族推送 end -->
|
|
|
|
|
<!-- 云信配置 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-->
|
|
|
|
|
<service
|
|
|
|
|
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">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<!-- 接收 push 消息 -->
|
|
|
|
|
<action android:name="com.vivo.pushclient.action.RECEIVE"/>
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
|
|
|
|
<!--Vivo Push开放平台中应用的appid 和api key-->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.vivo.push.api_key"
|
|
|
|
|
android:value="1a9cace2-da8a-4b49-a70d-9beefacf6096"/>
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.vivo.push.app_id"
|
|
|
|
|
android:value="16517"/>
|
|
|
|
|
|
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 ####################################################配置 -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="linkedme.sdk.key"
|
|
|
|
|
android:value="978cd79c98264f836450afda1228762e" /> <!-- LinkedMe####################################################配置 -->
|
|
|
|
|
<!-- TakePhoto申明 -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.soundcloud.android.crop.CropImageActivity"
|
|
|
|
|
android:screenOrientation="portrait" /> <!-- tinker配置 begin ########################################################## -->
|
|
|
|
|
<provider
|
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
|
|
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支付 -->
|
|
|
|
|
<!-- <activity-->
|
|
|
|
|
<!-- android:name="com.alipay.sdk.app.H5PayActivity"-->
|
|
|
|
|
<!-- android:configChanges="orientation|keyboardHidden|navigation|screenSize"-->
|
|
|
|
|
<!-- android:exported="false"-->
|
|
|
|
|
<!-- android:screenOrientation="behind"-->
|
|
|
|
|
<!-- android:windowSoftInputMode="adjustResize|stateHidden" />-->
|
|
|
|
|
<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" />
|
|
|
|
|
<!-- 支付相关配置 -->
|
|
|
|
|
<!-- bugly配置 begin ####################################################### -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.tencent.bugly.beta.ui.BetaActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize|locale"
|
|
|
|
|
android:theme="@android:style/Theme.Translucent" />
|
|
|
|
|
<!-- bugly配置 end ####################################################### -->
|
|
|
|
|
<!-- shareSDK配置 begin ####################################################### -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="Mob-AppKey"
|
|
|
|
|
android:value="2bd913c48fc28" />
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="Mob-AppSecret"
|
|
|
|
|
android:value="d4bc0689b6aaa914b0c44e60f0a6d7b7" />
|
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <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" />-->
|
|
|
|
|
|
|
|
|
|
<!-- <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" />-->
|
|
|
|
|
<!-- 为了兼容小程序返回的问题,声明WXEntryActivity,并把之前的 WechatHandlerActivity注释 -->
|
|
|
|
|
<activity
|
2020-04-03 16:54:53 +08:00
|
|
|
|
android:name="com.xuanyi.accompany.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" />
|
|
|
|
|
<service android:name=".treasure_box.service.OpenBoxService" />
|
|
|
|
|
<service android:name=".treasure_box.service.OpenHonourBoxService" />
|
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
</activity>
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.login.LoginActivity"
|
|
|
|
|
android:label="登录界面"
|
2020-04-07 16:41:24 +08:00
|
|
|
|
android:launchMode="singleTop"
|
2020-04-02 10:43:40 +08:00
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.login.QQLoginSelectMemberTypeActivity"
|
|
|
|
|
android:label="QQ登录界面"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.login.ErbanQQMemberBindAndLoginActivity"
|
|
|
|
|
android:label="QQ绑定登录界面"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".UserGuideActivity"
|
|
|
|
|
android:label="引导页"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.login.RegisterActivity"
|
|
|
|
|
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"
|
2020-04-03 16:54:53 +08:00
|
|
|
|
android:label="66陪玩"
|
2020-04-02 10:43:40 +08:00
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="adjustPan|stateAlwaysHidden">
|
|
|
|
|
|
|
|
|
|
<!-- URI Scheme方式 在dashboard配置中,请保持与ios的URI Scheme相同 -->
|
|
|
|
|
<!--
|
|
|
|
|
如果程序已存在与此完全相同的data配置,即只包含scheme并且值完全相同,
|
|
|
|
|
则需要考虑发起的intent会出现相同应用图标的选择对话框的情况
|
|
|
|
|
参考集成文档:https://www.linkedme.cc/docs/page4.html#link1
|
|
|
|
|
-->
|
|
|
|
|
<intent-filter>
|
|
|
|
|
|
|
|
|
|
<!-- 此处scheme值需要替换为后台设置中的scheme值 -->
|
|
|
|
|
<data android:scheme="qingxunapp" />
|
|
|
|
|
|
|
|
|
|
<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"
|
|
|
|
|
android:pathPrefix="/jgD"
|
|
|
|
|
android:scheme="https" />
|
|
|
|
|
<data
|
|
|
|
|
android:host="lkme.cc"
|
|
|
|
|
android:pathPrefix="/jgD"
|
|
|
|
|
android:scheme="http" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
<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.ForgetPswActivity"
|
|
|
|
|
android:label="找回密码"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<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" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.widget.RedPacketDialog"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/dialogactivity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.pay.ChargeActivity"
|
|
|
|
|
android:label="充值"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.pay.CDKEYChargeActivity"
|
|
|
|
|
android:label="兑换码充值"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.wallet.WalletActivity"
|
|
|
|
|
android:label="我的钱包"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.wallet.ExchangeGoldActivity"
|
|
|
|
|
android:label="兑换金币"
|
|
|
|
|
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.login.BinderPhoneActivity"
|
|
|
|
|
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=".ui.wallet.RedPacketWithdrawActivity"
|
|
|
|
|
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" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".monsterhunting.MonsterHuntingActivity"
|
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
|
android:label="打怪兽"
|
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/TranslucentTheme" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".decoration.view.DecorationStoreActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<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"
|
|
|
|
|
android:theme="@style/box_activity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".treasure_box.activity.BoxPrizeRecordActivity"
|
|
|
|
|
android:theme="@style/box_activity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".treasure_box.activity.BoxPrizeActivity"
|
|
|
|
|
android:theme="@style/box_activity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".treasure_box.activity.BoxHelpActivity"
|
|
|
|
|
android:theme="@style/box_activity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".treasure_box.activity.TreasureBoxHonourActivity"
|
|
|
|
|
android:theme="@style/box_activity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".treasure_box.activity.HonourBoxPrizeRecordActivity"
|
|
|
|
|
android:theme="@style/box_activity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".treasure_box.activity.HonourBoxPrizeActivity"
|
|
|
|
|
android:theme="@style/box_activity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".treasure_box.activity.HonourBoxHelpActivity"
|
|
|
|
|
android:theme="@style/box_activity" />
|
|
|
|
|
|
|
|
|
|
<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" />
|
|
|
|
|
<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=".ui.wallet.WalletGoldActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.wallet.JewelActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.wallet.RedBagActivity"
|
|
|
|
|
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" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.IncomeStatisticsActivity"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
<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" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".module_hall.hall.activity.GroupMemberListActivity"
|
|
|
|
|
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:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/room_message_activity" />
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.yizhuan.tutu.room_chat.activity.RoomMsgActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:theme="@style/room_message_activity" />
|
|
|
|
|
<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" />
|
|
|
|
|
<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" />
|
|
|
|
|
<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:windowSoftInputMode="stateHidden|adjustNothing"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".community.dynamic.view.DynamicDetailActivity"
|
|
|
|
|
android:windowSoftInputMode="adjustResize"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<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"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.wallet.sendgold.SendGoldActivity"
|
|
|
|
|
android:windowSoftInputMode="stateHidden|adjustResize"
|
|
|
|
|
android:screenOrientation="portrait" />
|
|
|
|
|
|
|
|
|
|
<!-- 隐私设置 -->
|
|
|
|
|
<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-04-02 10:43:40 +08:00
|
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|