Wais Kamal
Wais Kamal

Reputation: 6180

How do I configure Android SDKs for Android Studio 3.2.1?

I downloaded the latest version (3.2.1) of Android Studio from the Android Developers site.

After installing the application, it won't start. I get an error message when clicking on "Start a new Android Studio project":

Your Android SDK is missing, out of date or corrupted.

I read an outdated post dealing with the same issue but an older version of the application. I followed the solution described there and got stuck after navigating to Configure > Project Defaults > Project Structure. This is the window I see right now:

enter image description here

I can't find the SDK. Where is it located? Does it not get installed together with the app? If so, where can I download it from?

Upvotes: 0

Views: 908

Answers (1)

ʍѳђઽ૯ท
ʍѳђઽ૯ท

Reputation: 16976

I can't find the SDK. Where is it located? Does it not get installed together with the app? If so, where can I download it from?

That depends on how you installed the Android Studio. With the SDK packages (called bundle) or you have installed it separately which doesn't have SDK packages.

Where is it located

It's mostly uses:

C:\Users\<username>\AppData\Local\Android\Sdk

Directory on windows if you install SDK Manager, it will be easy to figured out.

where can I download it from

After installing Android SDK Manager, you'll need to download some packages like;

  • Platform-tools
  • Build-tools
  • Support library

And etc

To be able to compile-use Android Studio which is a general question and use Google for that.

Upvotes: 2

Related Questions