Running the program with the emulator, "The local SDK path is not installed!"

When I run my program with an emulator on Android Studio, I get the following error:

Local SDK path not installed

When I checked this in my project structure, my path to the SDK

C:\Android\sdk 

and this is the same in my SDK manager. I am new to Android Studio and I wonder why my emulator loads, but does not start my program. Any help in this regard would be appreciated.

+4
source share
3 answers

, ( Android Studio Gradle ) Gradle ( "Sync Project Gradle Files" ).

0

gradle sync, ANDROID_HOME.

macOS, SDK android, :

export ANDROID_HOME={YOUR_PATH}

export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools

source ~/.bash_profile
0

gradle. , , - , .

0

Source: https://habr.com/ru/post/1656163/


All Articles