Skip to content Skip to sidebar Skip to footer

Cordova (v3.0.0) Cli Failing On Mac - No Output For 'which Android' Command

All, I am trying to upgrade to Cordova v3.0.0 and have installed the cordova package from npm, have installed the latest Android SDK and ensured the necessary PATH variables are in

Solution 1:

Figured out finally !

I had included the platform-tools and tools like this:

PATH="~/android/sdk/tools:~/android/sdk/platform-tools:$PATH"

And when I changed that to the below, it just started working...

PATH="/Users/<username>/android/sdk/tools:/Users/<username>/android/sdk/platform-tools:$PATH"

So much for the which implementation in Mac. Hope this might helps someone starting with Mac like me.

Post a Comment for "Cordova (v3.0.0) Cli Failing On Mac - No Output For 'which Android' Command"