While implementing the BluetoothChat application .apk inside G1 device, it always pops up a message:
$adb install -r /home/parveen/workspace/BluetoothChat/bin/BluetoothChat.apk
-bash: adb: command not found
I am not getting clearly why this error is popping up every time. Please help me.
Thanks in advance. Praween
I was getting this error also and Ubuntu suggested me to install it so I installed* it and this worked in my case.
* - sudo apt-get install android-tools-adb
Note:x64 architecture
In my case "adb" is located in "~/Android/Sdk/platform-tools/"
the following command solved the problem:
in your pc adb not installed.
Try this, working for me
I have same problem as you. finally as i know, in linux & mac OS, we use ./adb instead of adb
In Ubuntu i could run the following command:
You need to add
$ANDROID_SDK/platform-tools
to yourPATH
, where$ANDROID_SDK
is wherever you installed the Android SDK.