Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What Android SDK should I use now?

I'm planning on trying to make a game to put on the Android Play Store soon, and I was wondering what SDK should I use now? I know there's 4.1 out for Jellybean, but should I still go for an older one like 2.2 or 2.3?

like image 818
corgichu Avatar asked Aug 05 '12 19:08

corgichu


3 Answers

There are statistics on what devices are wide spread over the users of the Google Play market to be found here: Android Dashboard

At the time of this writing (September 2014), it looks like this:

Android Usage 13th. of September 2014

Seeing the statistics, I would go for Jelly Bean (Android 4.1 +).

like image 199
Lukas Knuth Avatar answered Nov 05 '22 22:11

Lukas Knuth


You should still at least target API level 10 which currently has about 60% share: http://developer.android.com/about/dashboards/index.html

You can use the support library (v4) to get new classes like fragments.

like image 7
almalkawi Avatar answered Nov 05 '22 21:11

almalkawi


So use the dashboard like everyone says to go down to 2.1-2.2 but don't forget that should be your min SDK. Your target sdk number should be 16 (as noted the #io2012). This will make sure that your styles get rendered nicely for the new stuff.

like image 2
Frank Sposaro Avatar answered Nov 05 '22 21:11

Frank Sposaro