我使用phongap来创建android应用程序。每当我运行./create时它会显示错误:
这是我正在运行的命令
./create /Users/nehulagrawal/Desktop/PhoneGapTestExample com.sometest.PhoneGapTest PhoneGapTest
我在.bash-profile中的路径是:
export PATH=${PATH}:/Users/nehulagrawal/Desktop/android-adt/sdk/platform-tools:/Users/nehulagrawal/Desktop/android-adt/sdk/tools
没有走路径所以我编辑“创建”文件并使其看起来像
ANDROID_BIN="${ANDROID_BIN:=/Users/nehulagrawal/Desktop/android-adt/sdk/tools/android}"
我得到的错误是:
./create: line 106: ant: command not found
An unexpected error occurred: ant jar > /dev/null exited with 127
Deleting project...
不知道问题出在哪里。请提出任何建议。谢谢!
答案 0 :(得分:6)
使用brew安装ant
通过在终端中执行以下命令来下载并安装Homebrew:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
执行
,通过Homebrew安装Apache Antbrew install ant
再次运行PhoneGap构建,它应该成功编译并安装您的Android应用程序。