Android构建失败’无法运行ant版本’

前端之家收集整理的这篇文章主要介绍了Android构建失败’无法运行ant版本’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用离子cordova来运行示例演示,但是当我尝试构建时出现错误
Famtop myApp $ionic build android
Running command: "c:\Program Files\nodejs\node.exe" c:\Users\Famtop\myApp\hooks\
after_prepare\010_add_platform_class.js c:/Users/Famtop/myApp
add to body class: platform-android
Running command: "c:\Program Files\nodejs\node.exe" c:\Users\Famtop\myApp\hooks\
after_prepare\020_remove_sass_from_platforms.js c:/Users/Famtop/myApp
Running command: c:\Users\Famtop\myApp\platforms\android\cordova\build.bat
c:\Users\Famtop\myApp\platforms\android\cordova\node_modules\q\q.js:126
                    throw e;
                          ^
Error: Failed to run "ant -version",make sure you have ant installed and added
to your PATH.
    at c:\Users\Famtop\myApp\platforms\android\cordova\lib\check_reqs.js:43:27
    at ChildProcess.exithandler (child_process.js:751:5)
    at ChildProcess.emit (events.js:110:17)
    at maybeClose (child_process.js:1008:16)
    at Process.ChildProcess._handle.onexit (child_process.js:1080:5)
ERROR building one of the platforms: Error: c:\Users\Famtop\myApp\platforms\andr
oid\cordova\build.bat: Command Failed with exit code 1
You may not have the required environment or OS to build this project
Error: c:\Users\Famtop\myApp\platforms\android\cordova\build.bat: Command Failed
 with exit code 1
    at ChildProcess.whenDone (c:\Users\Famtop\AppData\Roaming\npm\node_modules\c
ordova\node_modules\cordova-lib\src\cordova\superspawn.js:131:23)
    at ChildProcess.emit (events.js:110:17)
    at maybeClose (child_process.js:1008:16)
    at Process.ChildProcess._handle.onexit (child_process.js:1080:5)

我看过类似的问题,建议我检查路径,但我不确定如何做到这一点:我有最新的JDK和Android套件.

任何帮助非常感谢.

F

解决方法

你需要下载 ANT from this link

然后将其解压缩,保存在某个文件夹中.然后在系统变量中添加名为ANT_HOME的变量

例如

Variable= `ANT_HOME` value= `H:\apache-ant-1.9.3`

然后将其添加到路径变量

%ANT_HOME%\bin;
原文链接:https://www.f2er.com/android/309127.html

猜你在找的Android相关文章