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.
71 lines
2.6 KiB
71 lines
2.6 KiB
|
3 months ago
|
<?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-feature android:name="android.hardware.camera" />
|
||
|
|
<uses-feature android:name="android.hardware.camera.autofocus" />
|
||
|
|
|
||
|
|
|
||
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
||
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
||
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||
|
|
<uses-permission android:name="android.permission.FLASHLIGHT" />
|
||
|
|
<uses-permission android:name="android.permission.USB_PERMISSION" />
|
||
|
|
|
||
|
|
<uses-feature
|
||
|
|
android:name="android.hardware.usb.accessory"
|
||
|
|
android:required="false" />
|
||
|
|
<uses-feature android:name="android.hardware.usb.host" />
|
||
|
|
|
||
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
||
|
|
|
||
|
|
<application
|
||
|
|
android:allowBackup="true"
|
||
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
||
|
|
android:fullBackupContent="@xml/backup_rules"
|
||
|
|
|
||
|
|
android:label="@string/app_name"
|
||
|
|
android:icon="@drawable/squrelogo"
|
||
|
|
android:supportsRtl="true"
|
||
|
|
android:theme="@style/Theme.RougheningApp"
|
||
|
|
tools:targetApi="31">
|
||
|
|
<meta-data
|
||
|
|
android:name="com.google.android.actions"
|
||
|
|
android:resource="@xml/check_boxs" />
|
||
|
|
|
||
|
|
|
||
|
|
<activity
|
||
|
|
android:name=".MainActivity"
|
||
|
|
android:exported="true">
|
||
|
|
<intent-filter>
|
||
|
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
|
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
|
||
|
|
</intent-filter>
|
||
|
|
|
||
|
|
<meta-data
|
||
|
|
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
|
||
|
|
android:resource="@xml/device_filter" />
|
||
|
|
</activity>
|
||
|
|
|
||
|
|
<!-- 辅助Activity 1:喷漆界面 -->
|
||
|
|
<activity android:name=".PaintActivity"
|
||
|
|
android:launchMode="singleTop" />
|
||
|
|
|
||
|
|
<!-- 辅助Activity 2:拉毛界面 -->
|
||
|
|
<activity android:name=".CleanActivity"
|
||
|
|
android:launchMode="singleTop"/>
|
||
|
|
|
||
|
|
<!-- 辅助Activity 3:打磨界面 -->
|
||
|
|
<activity android:name=".PolishActivity"
|
||
|
|
android:launchMode="singleTop"/>
|
||
|
|
|
||
|
|
<!-- 辅助Activity 4:测厚界面 -->
|
||
|
|
<activity android:name=".MeasureActivity"
|
||
|
|
android:launchMode="singleTop"/>
|
||
|
|
|
||
|
|
</application>
|
||
|
|
|
||
|
|
</manifest>
|