Sencha CMD 构建经典应用程序不起作用但现代应用程序可以
Sencha CMD build classic app not working but modern does
我有煎茶通用应用程序。最近我从 windows 切换到 Linux 所以我必须重新安装所有东西。
现在我的sencha CMD
版本是v6.7.0.63
,app版本是6.2.167。当我尝试使用 CMD 创建新应用程序时,它成功创建了新应用程序,并且在这个新创建的应用程序上 sencha app build classic
也很好。但是当我尝试构建旧应用程序时,它不起作用。我的旧应用程序版本 ios 也在运行。但不是经典。
这是我 运行 sencha app build classic
时给出的错误
Exception information:
Sencha/Cmd/6.7.0.63/plugin.xml:333: The following
error occurred while executing this line:
htdocs/pi-v3/public/App/.sencha/app/build-impl.xml:273:
The following error occurred while executing this line:
htdocs/pi-v3/public/App/.sencha/app/js-impl.xml:186:
com.sencha.exceptions.BasicException
at com.sencha.ant.AntScript.execute(AntScript.java:121)
当我 运行 sencha app build ios
它 运行 没有任何错误
linux 中的错误非常不清楚。但我能够解决它。如您所见,该错误并未说明有关磁头或内存的任何信息,但实际上是由于堆大小较小而导致的错误。所以我必须增加内存使用;
export _JAVA_OPTIONS="-Xms1024m -Xmx2048m"
我有煎茶通用应用程序。最近我从 windows 切换到 Linux 所以我必须重新安装所有东西。
现在我的sencha CMD
版本是v6.7.0.63
,app版本是6.2.167。当我尝试使用 CMD 创建新应用程序时,它成功创建了新应用程序,并且在这个新创建的应用程序上 sencha app build classic
也很好。但是当我尝试构建旧应用程序时,它不起作用。我的旧应用程序版本 ios 也在运行。但不是经典。
这是我 运行 sencha app build classic
Exception information:
Sencha/Cmd/6.7.0.63/plugin.xml:333: The following error occurred while executing this line: htdocs/pi-v3/public/App/.sencha/app/build-impl.xml:273: The following error occurred while executing this line: htdocs/pi-v3/public/App/.sencha/app/js-impl.xml:186: com.sencha.exceptions.BasicException at com.sencha.ant.AntScript.execute(AntScript.java:121)
当我 运行 sencha app build ios
它 运行 没有任何错误
linux 中的错误非常不清楚。但我能够解决它。如您所见,该错误并未说明有关磁头或内存的任何信息,但实际上是由于堆大小较小而导致的错误。所以我必须增加内存使用;
export _JAVA_OPTIONS="-Xms1024m -Xmx2048m"