Error: ANDROID_HOME is not set and “android” command not in your PATH on OS X

馋奶兔 提交于 2019-12-07 03:50:36

问题


I am getting this error in terminal when attempting to execute this command:

$ cordova platform add android

I read these answers here:

Error: ANDROID_HOME is not set and "android" command not in your PATH. You must fulfill at least one of these conditions

ANDROID_HOME is not set and "android" command not in your PATH Phonegap

however I don't know where to place the code they provide.

I am running OS X.


回答1:


Option 1

for windows

Right click on My computer -> properties -> Advanced system setting -> Environment Variables

Now Edit Path on system variables to

;/yourSdkHome/tools;/youSdkHome/platform-tools

Option 2

In Windows machine, Open Command prompt and enter each of this commands one by one

set ANDROID_HOME=**C:\\android-sdk-windows**

set PATH=%PATH%;%ANDROID_HOME%\tools;%ANDROID_HOME%\platform-tools

In MAC Machine, open Terminal and enter these one by one

export ANDROID_HOME=/<installation location>/android-sdk-macosx
export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools

Note - C:\\android-sdk-windows should be replaced by the path of Android SDK in your machine.

<installation location> should be replaced by the path of Android SDK in your machine.

Example

in MAC machine, if install location is ~/adt-bundle-mac-x86_64/sdk

first line should be

export ANDROID_HOME=~/adt-bundle-mac-x86_64/sdk


来源:https://stackoverflow.com/questions/27894416/error-android-home-is-not-set-and-android-command-not-in-your-path-on-os-x

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!