adb command not found

后端 未结 20 2295
刺人心
刺人心 2020-12-22 15:32

I need to run an adb forward command before I could use the ezkeyboard application which allows user to type on the phone using browser.

When

相关标签:
20条回答
  • 2020-12-22 16:37

    you have to move the adb command to /bin/ folder

    in my case:

    sudo su
    mv /root/Android/Sdk/platform-tools/adb /bin/
    
    0 讨论(0)
  • 2020-12-22 16:38

    In my case, I was in the platform-tools directory but was using command in the wrong way:

    adb install
    

    instead of the right way:

    ./adb install
    
    0 讨论(0)
提交回复
热议问题