Unity android 清单上传问题
Unity android manifest upload issues
我正在尝试将我的应用程序上传到 Oculus 商店,但出现以下错误:
我已阅读这些问题,但其中 none 已包含在我的清单中。我的应用程序中也不需要这些权限。那么如何纠正清单中尚未存在的内容?
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto">
<uses-feature android:name="android.hardware.vr.headtracking" android:version="1" android:required="true" /><!-- Request the headset DoF mode -->
<!-- Request the headset handtracking mode -->
<application
android:allowBackup="false"
android:label="@string/app_name"
android:icon="@mipmap/app_icon">
<activity
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
android:configChanges="locale|fontScale|keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode"
android:launchMode="singleTask"
android:name="com.unity3d.player.UnityPlayerActivity"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.oculus.intent.category.VR" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="false" />
<meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only"/>
<meta-data android:name="com.oculus.supportedDevices" android:value="quest|quest2" />
<meta-data android:name="com.oculus.vr.focusaware" android:value="true" />
</application>
</manifest>
权限由您的应用程序的依赖项添加。 android 清单文件会自动与其依赖项的清单文件合并。
顶级清单文件具有优先级,可以更改其依赖项中清单文件的值。
要删除权限,请使用 tools:node="remove"
标记。例如,要删除 RECORD_AUDIO
权限,请将此行添加到应用的清单文件中 <manifest>
XML 标记之间:
<uses-permission android:name="android.permission.RECORD_AUDIO" tools:node="remove" />
查看 android 开发者指南了解更多信息:
Merge multiple manifest files
我正在尝试将我的应用程序上传到 Oculus 商店,但出现以下错误:
我已阅读这些问题,但其中 none 已包含在我的清单中。我的应用程序中也不需要这些权限。那么如何纠正清单中尚未存在的内容?
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto">
<uses-feature android:name="android.hardware.vr.headtracking" android:version="1" android:required="true" /><!-- Request the headset DoF mode -->
<!-- Request the headset handtracking mode -->
<application
android:allowBackup="false"
android:label="@string/app_name"
android:icon="@mipmap/app_icon">
<activity
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
android:configChanges="locale|fontScale|keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode"
android:launchMode="singleTask"
android:name="com.unity3d.player.UnityPlayerActivity"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.oculus.intent.category.VR" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="false" />
<meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only"/>
<meta-data android:name="com.oculus.supportedDevices" android:value="quest|quest2" />
<meta-data android:name="com.oculus.vr.focusaware" android:value="true" />
</application>
</manifest>
权限由您的应用程序的依赖项添加。 android 清单文件会自动与其依赖项的清单文件合并。
顶级清单文件具有优先级,可以更改其依赖项中清单文件的值。
要删除权限,请使用 tools:node="remove"
标记。例如,要删除 RECORD_AUDIO
权限,请将此行添加到应用的清单文件中 <manifest>
XML 标记之间:
<uses-permission android:name="android.permission.RECORD_AUDIO" tools:node="remove" />
查看 android 开发者指南了解更多信息: Merge multiple manifest files