Issue
I am building an application in Android and the final application needs to be capable of running on three different AVDs.
What would I set as the minimum and target SDK and what which I compile with?
I am using Eclipse Juno with the Android plugin. JRE7
For example if I wanted 3 AVDs running:
- API Level 10: 2.3.3
- API Level 13: 3.2
- API Level 16 4.2.1
Solution
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="16" />
actually you can set minsdk any value less than 10 (if your api supports) and targetsdk to maximum
Answered By - stinepike
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.