adb command not found in linux environment

前端 未结 21 1245
有刺的猬
有刺的猬 2020-12-07 19:07

While implementing the BluetoothChat application .apk inside G1 device, it always pops up a message:

$adb install -r /home/parveen/workspace/BluetoothChat/bi         


        
21条回答
  •  醉梦人生
    2020-12-07 19:09

    In my case "adb" is located in "~/Android/Sdk/platform-tools/"

    the following command solved the problem:

    export PATH=$PATH:~/Android/Sdk/platform-tools/
    

提交回复
热议问题