-2

I installed Android studio in my Windows 8 pc recently. Now when I try to access AVD manager or SDK manager getting an error message like "Please specify Android SDK".. What is the solution for this? Also is there any option in Android studio to "Close Project" like eclipse ?

Android Lover
  • 41
  • 1
  • 12

1 Answers1

1

If you want to close the object go to File -> Close Project

Add the following in your manifest file above the tag

<uses-sdk android:minSdkVersion="8" />

Change 8 to which minimum sdk version you want. 14 is ICS so that should be fine

Use the following for the target SDK

<uses-sdk android:targetSdkVersion="19" />

19 is Kit-Kat.

If you want to have the app on ONLY older android versions, use the following, want replace X with which API you want

<uses-sdk android:maxSdkVersion="X" />