Reputation: 807
Which SDK do I use if I'm developing for a device running on Android 3.3? The closest, version number-wise, is 3.2.
Upvotes: 0
Views: 149
Reputation: 67522
You use 3.2. The Android SDK only has a new version if it includes "new" features from the last version. Therefore, you just round down to the nearest SDK. 4.0.4 uses 4.0.3, 2.3.7 uses 2.3.3, and 3.3 would use 3.2.
Note, however, there is no publication of Android 3.3. Take a look at the API levels documentation for a list of the valid versions. (Thanks to @uDaY for the link + info.)
Upvotes: 2