Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android 2.1 vs 2.2

I have been developing for Android 2.2+ for the majority of the year. But when I look at the "List of Android Devices" on wikipedia, I see a substantial number of Android 2.1 devices. A lot of these may have never received OTA updates and some were released not that long ago. I've seen the readily available statistics about Android 2.2 being the most widely used, but I can't help feel like I'm cutting a big audience out.

I've seen a few differences between 2.1 and 2.2 (like with TabWidgets) but if I just dropped my SDK down to 2.1 what differences should I be aware of?

Is this even less relevant now, thoughts and experience welcome, or links to informative sources

like image 443
CQM Avatar asked Aug 17 '11 20:08

CQM


2 Answers

As always, it depends on the specific features of your application. I don't want to talk you out of supporting 2.1. I'm certainly not an expert. But you have to weight how much work it is to make your application available to the last 20% percent of the market.

Although I like the idea of maintaining a lot of backward compatibility, I think it makes sense to support the "current and future market" more than spending a lot of effort to support older devices. Of course, if your application works well with older API levels that's great and you should obviously set it as such. Who knows, maybe adding support for 2.1 will take you less time than it took me to type this. :)

You can see up-to-date stats directly on the Android Platform Versions website.

I think the more interesting graph is the 2nd one that shows "number of Android devices that accessed Android Market" recently. (current one inlined here). So if you support 2.2 it looks like you're supporting over 75% of the market (and that number is only going to grow).

enter image description here

One other thing to watch out for is performance. In addition to features the pre-8 API doesn't support, older devices sometimes just don't have the performance of the newer ones. (Not always the case since there are dozens of devices.) One test device I used didn't support Live Wallpapers, not because of the API, but because the device just didn't have enough horsepower.

like image 180
dustmachine Avatar answered Oct 14 '22 22:10

dustmachine


I'd definitely target 2.1 to get the largest audience. The changes you have to be aware of are not huge, but can definitely stick you if you don't catch them.

A couple of things:

  • showDialog(int) can't take a Bundle as an argument in 2.l. The 2.2 call is: showDialog(int, Bundle)
  • You use a different function to access the SD card (also note that the SD card paths are different in 2.1 and 2.2)

I suggest using the android dev's reference pages feature of filtering by version. It'll make coding for 2.1 much easier.

like image 29
Prime Avatar answered Oct 14 '22 23:10

Prime