Introduction
There are two types of SDK location in Android, global SDK location which is used by all projects and project SDK location which is used by a specific project.
Global SDK Location
In Android Studio, open File | Settings | Languages & Frameworks | Android SDK. Here you can see the global SDK location.
Project SDK Location
- Open Android Studio, go to
File->Project Structure->SDK Location. Here you can see theprojectSDK location.
- If your project has file
local.properties, you can specify the project SDK location by addingsdk.dir=/path/to/android/sdkin the file. For example:
1 | sdk.dir=D\:\\cache\\android_sdk |