76 行
3.0 KiB
XML
76 行
3.0 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">
|
||
|
|
<!-- 网络权限 -->
|
||
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
||
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||
|
|
<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.READ_LOGS" /> -->
|
||
|
|
<uses-feature android:name="android.hardware.camera" />
|
||
|
|
<uses-feature android:name="android.hardware.camera.autofocus" />
|
||
|
|
|
||
|
|
<application
|
||
|
|
android:name=".MyApplication"
|
||
|
|
android:allowBackup="true"
|
||
|
|
android:icon="@mipmap/ic_launcher"
|
||
|
|
android:label="${APP_NAME}"
|
||
|
|
android:supportsRtl="true"
|
||
|
|
android:theme="@style/AppTheme"
|
||
|
|
android:usesCleartextTraffic="true"
|
||
|
|
tools:replace="android:label">
|
||
|
|
<activity
|
||
|
|
android:name=".ui.TestActivity"
|
||
|
|
android:exported="false" />
|
||
|
|
<activity
|
||
|
|
android:name=".ui.SettingActivity"
|
||
|
|
android:exported="false" />
|
||
|
|
|
||
|
|
<receiver
|
||
|
|
android:name=".receiver.BootCompleteReceiver"
|
||
|
|
android:enabled="true"
|
||
|
|
android:exported="true">
|
||
|
|
|
||
|
|
<!-- 接收启动完成的广播 -->
|
||
|
|
<intent-filter android:priority="1000">
|
||
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
||
|
|
</intent-filter>
|
||
|
|
</receiver>
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name=".ui.MainActivity"
|
||
|
|
android:exported="false" />
|
||
|
|
<activity
|
||
|
|
android:name=".ui.WelcomeActivity"
|
||
|
|
android:exported="true"
|
||
|
|
android:screenOrientation="portrait">
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
|
||
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
|
</intent-filter>
|
||
|
|
</activity>
|
||
|
|
|
||
|
|
<provider
|
||
|
|
android:name="androidx.core.content.FileProvider"
|
||
|
|
android:authorities="${APP_ID}.fileprovider"
|
||
|
|
android:exported="false"
|
||
|
|
android:grantUriPermissions="true">
|
||
|
|
<meta-data
|
||
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
||
|
|
android:resource="@xml/filepaths" />
|
||
|
|
</provider>
|
||
|
|
|
||
|
|
<meta-data
|
||
|
|
android:name="design_width_in_dp"
|
||
|
|
android:value="540" />
|
||
|
|
<meta-data
|
||
|
|
android:name="design_height_in_dp"
|
||
|
|
android:value="960" />
|
||
|
|
</application>
|
||
|
|
|
||
|
|
</manifest>
|