2026-06-01 00:23:11 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
<manifest
|
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
|
package="com.unity3d.player"
|
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
<application>
|
|
|
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
|
|
|
|
<activity android:name="com.unity3d.player.UnityPlayerActivity"
|
|
|
|
|
|
android:theme="@style/UnityThemeSelector">
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
|
|
|
|
|
|
</activity>
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 相机权限:使用 RGB 相机、AR 追踪、录像 -->
|
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 振动权限:控制器振动反馈 -->
|
|
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 音频/录音权限:麦克风录音、音视频录制 -->
|
|
|
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 如果需要录制视频到本地,可能还需要存储权限 -->
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2026-06-03 22:05:03 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 允许自身音频被本应用捕获,默认true -->
|
|
|
|
|
|
<application android:allowAudioPlaybackCapture="true" />
|
2026-06-01 00:23:11 +08:00
|
|
|
|
</manifest>
|