问题描述
- 错误 1 “java”已退出,代码为 1。 AndroidApplication2
-
使用 VS2010编译Mono for Android程序是提示错误信息
:"错误 1 “java”已退出,代码为 1。 AndroidApplication2
",
解决方案
这不是错误信息,要看具体的错误信息才知道什么问题。
解决方案二:
如果最简单的程序都编译不了,检查下环境和配置。
解决方案三:
参考“aapt.exe” exited with code 1 when building Mono for Android project
In the Visual Studio Options dialog, go to "Projects and Solutions" then "Build and Run". Switch the "MSBuild project build output verbosity" from "Minimal" to "Normal" and build your project again. After doing so, I got this message which was far more helpful. Apparently, resources cannot include anything but letters, numbers, periods, and underscores ([a-z0-9_.]).
在VS中把MSBuild project build output verbosity从"Minimal"改成"Normal"以便获取更多的相关信息。Resource只能包含字母, 数字和下划线,你检查一下你的项目里面的情况,看看有没有多余的空格等。
时间: 2024-12-09 07:37:51