Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - Command not found

I am trying to run the command in ubuntu

android update project --path .

However I am getting a android:command not found error.

I assume this is something to do with the path which I learnt on here the other day? I was just wondering, what do variable do I need to add (Android I assume) and what do I need to point it too.

like image 444
Biscuit128 Avatar asked Jun 10 '12 15:06

Biscuit128


People also ask

What is Android command line?

The Android SDK Command-Line Tools package contains various tools for building and debugging Android apps. It is released concurrently with Android Studio and is installed in the android_sdk /cmdline-tools/ version /bin/ directory.


1 Answers

On MacOS/Linux, define the path to wherever you installed your SDK as ANDROID_HOME:

MacOS

$ export ANDROID_HOME=/Applications/android-sdk-macosx 

If you installed Android Studio, the value will need to be

export ANDROID_HOME=$HOME/Library/Android/sdk 

Linux

$ export ANDROID_HOME=~/android-sdk-linux 

Then add the paths to the platform-tools and tools sub-directories (Same on MacOS/Linux).

export PATH=$ANDROID_HOME/tools:$PATH export PATH=$ANDROID_HOME/platform-tools:$PATH 

You should now be able to run android from the shell.

If none of the suggested ANDROID_HOME paths above are valid, you can find the (uniquely and consistently named) platform-tools folder via:

find / -name platform-tools 2>/dev/null 

Whatever path that returns will need to be trimmed down to end with either sdk, android-sdk-linux, or android-sdk-macosx.

like image 168
Festus Tamakloe Avatar answered Oct 17 '22 06:10

Festus Tamakloe