Set target SDK version
Description
We can set target SDK version in manifest xml file.
Example
<manifest ...
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity android:name=".MainActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Note
The code above sets the target SDK version by using the <uses-sdk>
tag as follows.
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="15" />