离子生成android在窗口8上失败了

时间:2017-03-08 13:08:40

标签: android angularjs ionic-framework

您好我正在使用离子框架我正在使用

ionic build android

给出错误

Error: cmd: Command failed with exit code 1 Error output:
FAILURE: Build failed with an exception.

* What went wrong:
Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the user guide chapter on the daemon at https://docs.gradle.org/
2.14.1/userguide/gradle_daemon.html
Please read the following process output to find out more:
-----------------------
Error occurred during initialization of VM
Could not reserve enough space for 2097152KB object heap


* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug
option to get more log output.

java版

java version "1.8.0_121"
Java(TM) SE Runtime Environment (build 1.8.0_121-b13)
Java HotSpot(TM) Client VM (build 25.121-b13, mixed mode)

我得到了很多答案,但问题仍然存在。

2 个答案:

答案 0 :(得分:0)

警告告诉您JVM没有足够的内存。要修复错误,请通过将jvm选项设置为以下内容来增加android项目中gradle.properties文件中的内存量:

org.gradle.jvmargs=-Xmx1024m -XX:MaxPermSize=256m

答案 1 :(得分:0)

我解决了这个问题,增加了

中的内存量 通过将jvm选项设置为以下内容,在android项目中运行gradle.properties文件:

org.gradle.jvmargs = -Xmx1024m -XX:MaxPermSize = 256m

但它对我不起作用

转到开始→控制面板→系统→高级系统设置→高级(选项卡)→环境变量→系统变量→新建:

Variable name:_JAVA_OPTIONS 
 Variable value: -Xmx512M