adb command not found

后端 未结 20 2451
刺人心
刺人心 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

    From the file android-sdks/tools/adb_has_moved.txt:

    The adb tool has moved to platform-tools/

    If you don't see this directory in your SDK, launch the SDK and AVD Manager (execute the android tool) and install "Android SDK Platform-tools"

    Please also update your PATH environment variable to include the platform-tools/ directory, so you can execute adb from any location.

    so on UNIX do something like:

    export PATH=$PATH:~/android-sdks/platform-tools

提交回复
热议问题