tgai
tgai

Reputation: 1115

Testing an application for Android

I was wondering if any one had compiled a list of the most commonly used Android devices so I can get an idea of what I should test for. Even better would be suggested configurations for emulating each device.

Thanks, Rob

Upvotes: 5

Views: 335

Answers (2)

Seth
Seth

Reputation: 46453

I'm sure you have Google Search as well, but here's what I can find:

Upvotes: 0

Cheryl Simon
Cheryl Simon

Reputation: 46844

I don't think Google publishes any stats on particular devices, they just have this data on platform versions and screen sizes. However, that could get you started.

Based on that data, I'd test at least one configuration with API versions 1.5, 1.6 and 2.1, and versions with medium and high density resolutions.

If you wanted to test physical devices, I would guess that the G1 and the Droid would be the top two... G1 would give you the lower API versions, and Droid would give you the 2.1.

Depending on your application that may be sufficient. Applications that make heavy use of OpenGL extensions might need to test further, since that is the area where there is the most difference from device to device. I don't think that the emulator is sufficient for that. See this thread on the differences.

Upvotes: 3

Related Questions