You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
188 lines
7.4 KiB
188 lines
7.4 KiB
<?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.kanglai.push"> |
|
|
|
<!-- 读取手机状态和身份权限 --> |
|
<uses-feature android:name="android.hardware.camera" android:required="false" /> |
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
|
|
|
<!-- 外部存储 --> |
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
|
<uses-permission |
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:ignore="ScopedStorage" /> |
|
|
|
<!-- 拍照权限 --> |
|
<uses-permission android:name="android.permission.CAMERA" /> |
|
|
|
<!-- 录音权限 --> |
|
<uses-permission android:name="android.permission.RECORD_AUDIO" /> |
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> |
|
|
|
<!-- 蓝牙权限 --> |
|
<uses-permission android:name="android.permission.BLUETOOTH" /> |
|
|
|
<!-- 安装权限 --> |
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" /> |
|
|
|
<!-- 允许应用打开网络套接字 --> |
|
<uses-permission android:name="android.permission.INTERNET" /> |
|
|
|
<!-- 这个权限用于获取wifi的获取权限,wifi信息会用来进行网络定位 --> |
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> |
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> |
|
|
|
<!-- Application 节点详解:https://developer.android.google.cn/guide/topics/manifest/application-element --> |
|
<!-- Activity 节点详解:https://developer.android.google.cn/guide/topics/manifest/activity-element --> |
|
<application |
|
android:name=".app.AppApplication" |
|
android:allowBackup="true" |
|
android:allowNativeHeapPointerTagging="false" |
|
android:icon="@drawable/icon_app" |
|
android:label="${app_name}" |
|
android:networkSecurityConfig="@xml/network_security_config" |
|
android:requestLegacyExternalStorage="true" |
|
android:resizeableActivity="true" |
|
android:roundIcon="@drawable/icon_app" |
|
android:supportsRtl="true" |
|
android:theme="@style/AppTheme" |
|
android:usesCleartextTraffic="true" |
|
tools:replace="android:label" |
|
tools:targetApi="q"> |
|
|
|
<!-- 闪屏引导 --> |
|
<activity |
|
android:name=".ui.activity.SplashActivity" |
|
android:exported="true" |
|
android:launchMode="singleTop" |
|
android:screenOrientation="portrait" |
|
android:theme="@style/theme_umeng_push_splash"> |
|
<!-- 程序入口 --> |
|
<intent-filter> |
|
<action android:name="android.intent.action.MAIN"/> |
|
<category android:name="android.intent.category.LAUNCHER" /> |
|
</intent-filter> |
|
</activity> |
|
|
|
<!-- 标签栏 --> |
|
<activity |
|
android:name=".ui.activity.TabBarActivity" |
|
android:exported="true" |
|
android:launchMode="singleTop" |
|
android:screenOrientation="portrait"> |
|
<intent-filter> |
|
<action android:name="com.android.kanglai.push.TabBarActivity"/> |
|
<category android:name="android.intent.category.DEFAULT" /> |
|
</intent-filter> |
|
</activity> |
|
|
|
<!-- 登录 --> |
|
<activity |
|
android:name=".ui.activity.LoginActivity" |
|
android:exported="true" |
|
android:launchMode="singleTop" |
|
android:screenOrientation="portrait"> |
|
<intent-filter> |
|
<action android:name="com.android.kanglai.push.LoginActivity"/> |
|
<category android:name="android.intent.category.DEFAULT" /> |
|
</intent-filter> |
|
</activity> |
|
|
|
<!-- 图片选择 --> |
|
<activity |
|
android:name=".ui.activity.PictureSelectorActivity" |
|
android:launchMode="singleTop" |
|
android:screenOrientation="portrait" /> |
|
|
|
<!-- 关于 --> |
|
<activity |
|
android:name=".ui.activity.AboutActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
|
|
<!-- 演示友盟分享 --> |
|
<activity |
|
android:name=".ui.activity.DemoShareActivity" |
|
android:launchMode="singleTop" |
|
android:screenOrientation="portrait" /> |
|
|
|
<!-- 新界面 2023年4月28日 --> |
|
<!-- 联系人详情 --> |
|
<activity |
|
android:name=".ui.activity.LinkDetailActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 搜索用户页 --> |
|
<activity |
|
android:name=".ui.activity.FindUsersActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 新增用户 --> |
|
<activity |
|
android:name=".ui.activity.AddLinkActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 企业列表 --> |
|
<activity |
|
android:name=".ui.activity.EnterpriseListActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 企业列表 --> |
|
<activity |
|
android:name=".ui.activity.AddMessageActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 关注企业界面 --> |
|
<activity |
|
android:name=".ui.activity.AddAttentionActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 关注用户列表 --> |
|
<activity |
|
android:name=".ui.activity.FocusListActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 黑名单 --> |
|
<activity |
|
android:name=".ui.activity.BlackListActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 关注用户列表 --> |
|
<activity |
|
android:name=".ui.activity.AuditListActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 聊天室 --> |
|
<activity |
|
android:name=".ui.activity.InstantActivity" |
|
android:windowSoftInputMode="adjustResize" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 聊天室详情页 --> |
|
<activity |
|
android:name=".ui.activity.InstantDetailActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 推送类型设置 --> |
|
<activity |
|
android:name=".ui.activity.PushTypeActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 关注用户详情 --> |
|
<activity |
|
android:name=".ui.activity.FocusDetailActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 第一次登录时填写的问卷 --> |
|
<activity |
|
android:name=".ui.activity.LoginSurveyActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
<!-- 用户协议 以及 隐私政策 --> |
|
<activity |
|
android:name=".ui.activity.DocumentActivity" |
|
android:launchMode="standard" |
|
android:screenOrientation="portrait" /> |
|
|
|
</application> |
|
</manifest> |