setting android minimum sdk version
by Prakash[ Edit ] 2014-02-27 14:38:00
You can set minimum and maximum SDK version that you application supports in the AndroidManifest.xml file :
For example to set the minimum sdk verion to be 8 and maximum sdk version to 18 edit like following :
android:minSdkVersion="8"
android:targetSdkVersion="18" />