unity报错:D:\unity\wyw4\Temp\gradleOut\launcher\src\main\AndroidManifest.xml:48:9-34 Error: Attribute application@debuggable value=(true) from [:unityLibrary] AndroidManifest.xml:48:9-34 is also present at [:VuforiaWrapper:] AndroidManifest.xml:19:18-44 value=(false). Suggestion: add 'tools:replace="android:debuggable"' to <application> element at AndroidManifest.xml:5:3-7:17 to override. FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':launcher:processReleaseManifest'. > Manifest merger failed : Attribute application@debuggable value=(true) from [:unityLibrary] AndroidManifest.xml:48:9-34 is also present at [:VuforiaWrapper:] AndroidManifest.xml:19:18-44 value=(false). Suggestion: add 'tools:replace="android:debuggable"' to <application> element at AndroidManifest.xml:5:3-7:17 to override. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 1s Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8 UnityEngine.GUIUtility:ProcessEvent (int,intptr)
时间: 2024-02-16 09:00:36 浏览: 304
这个错误是由于在 Unity 项目中使用了 Vuforia 并且在 AndroidManifest.xml 文件中存在相同的 debuggable 属性的值,但其值不同。为解决此问题,可以在 AndroidManifest.xml 文件的 <application> 元素中添加 'tools:replace="android:debuggable"' 属性并将其设置为 true。具体来说,可以按照以下步骤来解决这个问题:
1. 在 Unity 编辑器中选择 File -> Build Settings。
2. 选择 Android 平台,然后单击 Player Settings。
3. 在 Inspector 窗口中,展开 Other Settings。
4. 找到渲染管线选项,并将它设置为 Legacy。
5. 单击 Build 按钮生成 APK 文件。
6. 打开生成的 AndroidManifest.xml 文件,并找到 <application> 元素。
7. 在 <application> 元素中添加 'tools:replace="android:debuggable"' 属性并将其设置为 true,示例如下:
```
<application android:debuggable="true" tools:replace="android:debuggable">
```
8. 保存并关闭 AndroidManifest.xml 文件。
9. 重新打包 APK 文件并尝试构建您的 Unity 项目。
希望这些步骤可以帮助您解决这个问题。
相关问题
unity报错:D:\unity\wyw4\Temp\gradleOut\launcher\src\main\AndroidManifest.xml:48:9-34 Error: Attribute application@debuggable value=(true) from [:unityLibrary] AndroidManifest.xml:48:9-34
这个错误是由于你的 Unity 项目和 Unity 库 (UnityLibrary) 中都定义了相同的 `application@debuggable` 属性,但是两个属性的值不同。这个错误可以通过在 UnityLibrary 的 AndroidManifest.xml 文件中删除 `application@debuggable` 属性来解决。
你可以按照以下步骤来解决这个问题:
1. 在 Unity 中打开 Build Settings,选择 Android 平台,然后点击 Player Settings。
2. 在 Inspector 窗口中,找到 "XR Settings" 部分,并展开它。
3. 找到 "Vuforia Augmented Reality Supported" 字段,并将其设置为 "No"。
4. 重新编译你的项目,看看是否还会出现这个错误。
如果你的项目中还有其他库也定义了 `application@debuggable` 属性,你需要找到这些库并按照上述步骤进行修改。
unity报错:D:\unity\wyw4\Temp\gradleOut\launcher\src\main\AndroidManifest.xml:45:9-34 Error: Attribute application@debuggable value=(true) from [:unityLibrary] AndroidManifest.xml:45:9-34 is also present at [:VuforiaWrapper:] AndroidManifest.xml:19:18-44 value=(false). Suggestion: add 'tools:replace="android:debuggable"' to <application> element at AndroidManifest.xml:5:3-7:17 to override.
这个错误提示是由于在你的项目中,同时引入了unityLibrary和VuforiaWrapper两个库,它们的manifest文件中都定义了debuggable属性,但它们的值不同,所以出现了冲突。
解决方法是在你的项目的manifest文件中,找到application标签,添加如下属性:
```
<application
...
tools:replace="android:debuggable">
```
这样就会覆盖掉其他库中的debuggable属性,解决冲突。
阅读全文