Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'adb command not found, review your android sdk Installation" error In Android studio Wifi ADB Plugin

Tags:

android

Recenlty I found a Android Studio Plugin which help to convert usb adb to wifi adb. But after following all the instruction I am getting 'adb command not found, review your android sdk Installation" error. What's my problem?

Plugin GitHub link: https://github.com/pedrovgs/AndroidWiFiADB

like image 469
Yeahia2508 Avatar asked Oct 22 '15 23:10

Yeahia2508


People also ask

How do I fix Android SDK not found?

To solve this Error:Make sure you have installed "Android SDK Platform-Tools". When you install "Android SDK Platform-Tools", it will fix Android SDK file not found: adb error.


2 Answers

if you are using mac paste this code in terminal and change USER_NAME

export PATH=/Users/USER_NAME/Library/Android/sdk/platform-tools:$PATH
like image 171
Bhargav Avatar answered Oct 21 '22 23:10

Bhargav


Just add the platform-tools path to your system environment variable and then restart the terminal or command prompt.

For example if you are using Windows 10, you will find the platform-tools in AppData folder.

e.g. : C:\Users\tarunsmalviya12\AppData\Local\Android\sdk\platform-tools

like image 42
Tarun Malviya Avatar answered Oct 21 '22 23:10

Tarun Malviya