66 lines
3.1 KiB
XML
66 lines
3.1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|||
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|||
|
|
<!-- 地图SDK(包含其搜索功能)需要的基础权限 -->
|
|||
|
|
<!-- 允许访问网络,必选权限 -->
|
|||
|
|
<uses-permission android:name="android.permission.INTERNET" /> <!-- 允许获取粗略位置,若用GPS实现定位小蓝点功能则必选 -->
|
|||
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <!-- 允许获取网络状态,用于网络定位,若无gps但仍需实现定位小蓝点功能则此权限必选 -->
|
|||
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <!-- 允许获取wifi网络信息,用于网络定位,若无gps但仍需实现定位小蓝点功能则此权限必选 -->
|
|||
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <!-- 允许获取wifi状态改变,用于网络定位,若无gps但仍需实现定位小蓝点功能则此权限必选 -->
|
|||
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> <!-- 允许写设备缓存,用于问题排查 -->
|
|||
|
|
<uses-permission android:name="android.permission.WRITE_SETTINGS" /> <!-- 高精度定位 -->
|
|||
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|||
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|||
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|||
|
|
|
|||
|
|
<application
|
|||
|
|
android:name=".MyApp"
|
|||
|
|
android:allowBackup="true"
|
|||
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|||
|
|
android:fullBackupContent="@xml/backup_rules"
|
|||
|
|
android:icon="@mipmap/logo"
|
|||
|
|
android:label="LYUAV"
|
|||
|
|
android:roundIcon="@mipmap/logo"
|
|||
|
|
android:supportsRtl="true"
|
|||
|
|
android:theme="@style/Theme.LongYiGroundStation"
|
|||
|
|
tools:targetApi="31">
|
|||
|
|
<activity
|
|||
|
|
android:name=".Funcation.Activity.FuncationActivity"
|
|||
|
|
android:exported="true" >
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
</activity>
|
|||
|
|
<activity
|
|||
|
|
android:name=".Main.Setting.Activity.SettingActivity"
|
|||
|
|
android:exported="false" />
|
|||
|
|
<activity
|
|||
|
|
android:name=".MainActivity2"
|
|||
|
|
android:exported="true"></activity>
|
|||
|
|
|
|||
|
|
<meta-data
|
|||
|
|
android:name="com.amap.api.v2.apikey"
|
|||
|
|
android:value="9df7f5853e1af0e8d07afb0b94a57d51"
|
|||
|
|
tools:ignore="ExtraText" />
|
|||
|
|
|
|||
|
|
<activity
|
|||
|
|
android:name=".Login.Activity.LoginActivity"
|
|||
|
|
android:exported="true"
|
|||
|
|
android:screenOrientation="landscape">
|
|||
|
|
|
|||
|
|
<intent-filter>
|
|||
|
|
<action android:name="android.intent.action.MAIN" />
|
|||
|
|
|
|||
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|||
|
|
</intent-filter>
|
|||
|
|
|
|||
|
|
</activity>
|
|||
|
|
<activity
|
|||
|
|
android:name=".Main.Activity.MainActivity"
|
|||
|
|
android:exported="true"
|
|||
|
|
android:screenOrientation="landscape" />
|
|||
|
|
|
|||
|
|
<service android:name=".Main.Service.MyBoundService" />
|
|||
|
|
</application>
|
|||
|
|
|
|||
|
|
</manifest>
|