unity报错:Target architecture not specified Select atleast one Android CPU architecture in PlayerSettings,
时间: 2024-02-16 22:01:12 浏览: 185
unity web报错:Uncaught SyntaxError: Unexpected token '<"
这个错误是因为在 Unity 的 PlayerSettings 中没有指定 Android 的目标架构。解决方法如下:
1. 在 Unity 编辑器中,选择 File -> Build Settings -> Player Settings。
2. 在 Inspector 中选择 Player Settings 下的 Android 平台。
3. 在 Inspector 中选择 Other Settings 选项卡。
4. 在 Other Settings 选项卡下的 Configuration 部分,选择 Target Architectures。
5. 在 Target Architectures 中选择你需要支持的 Android 设备架构。
6. 点击 Apply 或者 Save 按钮即可保存设置。
完成上述步骤后,重新编译你的项目即可。
阅读全文