skip to Main Content

Despite successfully installing the Android SDK and platform, and even after restarting, I encounter the error "No Android SDK Found" when launching Android Studio.

enter image description here

Upon clicking "Next," the path corresponds with my local directory as well.

enter image description here

2

Answers


  1. Just uninstall the android studio, and reinstall it at another path, like you can install it in another folder, just change the path. Install it again and it will download the sdk tools.

    Login or Signup to reply.
  2. Maybe the problem is that your terminal doesn’t have the paths.
    You can run something like this:

    export ANDROID_HOME=$HOME/Library/Android/sdk
    export PATH=$PATH:$ANDROID_HOME/platform-tools
    export PATH=$PATH:$ANDROID_HOME/emulator
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search