Skip to content Skip to sidebar Skip to footer

Android Studio Sdk Version 22?

Your Android SDK is out of date or is missing templates. Please ensure you are using SDK version 22 or later. The machine I'm using I've not had Eclipse on before, but had to becau

Solution 1:

Also make sure that inside Configure > Projects Defaults > Projects Structure > Click on the "Android SDK" section at the bottom left panel and insert the path of your Android SDK like this: /Applications/Android Studio.app/sdk (Use the browser to point to the sdk folder).

Solution 2:

Android SDK is different from Android API level.

I had this issue when i tried to migrate from Eclipse to Android Studio IDE. The problem is the version of Android SDK Tools as the error message supposes.

Presuming you have installed Android SDK from Eclipse before:

1. Open Eclipse
2. Go to Help->Check For Updates and update to latest version (just to be sure)
3. Go to Window->Android SDK Manager
4. on the SDK Manager make sure you have selected Tools.Android SDK Tools,Platform-tools and SDK Build-tools![first 3on the picture][1]
5. Press 'Install packages'6. Restart Eclipse and Package Manager
7. Repeat steps 4, 5and6until there isnothing left to update.
8. Close Eclipse, start Android Studio andtryto'create new project' again. This time it should work!

If you are able to start Android Studio, you can open SDK Manager from there (in the toolbox by defaut), and go on from p.4

if using Eclipse also be sure to have set the SDK path the same as in Eclipse

Android Studio - configure - Project Defaults - Project structure - Press plus- Android SDK - put path to the same sdk that you use in eclipse (run SDK and in top panel you can see this path) from here

Solution 3:

In your eclipse

Go to HelpInstall New Software.

On Work with: type https://dl-ssl.google.com/android/eclipse/ and press ENTER.

Wait for Eclipse to fetch the repository. An item named Developer tools will appear in the list. Mark it for install, press Next and follow the steps to install the ADT tools.

When finished, it will ask to restart Eclipse. Make sure you do this.

When Eclipse restarts, all your Android SDK packages should show up again.

Post a Comment for "Android Studio Sdk Version 22?"