Where is adb.exe in windows 10 located?

后端 未结 14 1609
走了就别回头了
走了就别回头了 2020-12-07 09:38

I installed android studio 1.5 on windows 10.

When I type in command line:

adb

I get command not found.

Where ca

相关标签:
14条回答
  • 2020-12-07 10:11

    Mine was in: C:\NVPACK\android-sdk-windows\platform-tools

    0 讨论(0)
  • 2020-12-07 10:14
    • Open android studio

    • Press configure or if project opens go to settings

    • lookup Android SDK shown in picture

    • You can see your Android SDK Location. Open file in file explorer to that location.

    • Add this to end or direct through to this

    \platform-tools\adb.exe

    full path on my pc is :

    C:\Users\Daniel\AppData\Local\Android\Sdk\platform-tools

    0 讨论(0)
  • 2020-12-07 10:16

    It is located in the AppData hidden folder

    C:\Users\[user]\AppData\Local\Android\sdk\platform-tools
    

    From l33t's comment below you may use the following shortcut:

    %LOCALAPPDATA%\Android\sdk\platform-tools
    
    0 讨论(0)
  • 2020-12-07 10:17

    Got it to work go to the local.properties file under your build.gradle files to find out the PATH to your SDK, from the SDK location go into the platform-tools folder and look and see if you have adb.exe.

    If not go to http://adbshell.com/downloads and download ADB KITS. Copy the zip folder's contents into the platform-tools folder and re-make your project.

    I didn't need to update the PATH in the Extended Controls Settings section on the emulator, I left Use detected ADB location settings on. Hope this makes this faster for you !

    0 讨论(0)
  • 2020-12-07 10:19

    Open a cmd window and type where adb.exe

    For me

    D:\android-sdk_r24.4.1-windows\android-sdk-windows\platform-tools\adb.exe

    0 讨论(0)
  • 2020-12-07 10:23

    Since you already have Android Studio installed, and require the environment variable ANDROID_HOME to be set, the easy way to do this is to add %ANDROID_HOME%\platform-tools to your path.

    0 讨论(0)
提交回复
热议问题