How to Identify current android device OS from code? So from my application i need to know the current device version (2 is 5 or 2.01 6 Donut - 2.01 or 2.2 7 Eclair)??

Because if it's 2.2 i want to use c2dm, but if it's lower than 2.2 than i will not perform this action. But i want my application can be use from Android 1.6.

Thanks

link|improve this question

76% accept rate
feedback

2 Answers

up vote 11 down vote accepted

You can find out the Android version looking at Build.VERSION.

The documentation recommends you check Build.VERSION.SDK_INT against the values in Build.VERSION_CODES.

This is fine as long as you realise that Build.VERSION.SDK_INT was only introduced in API Level 4, which is to say Android 1.6 (Donut). So this won't affect you, but if you did want your app to run on Android 1.5 or earlier then you would have to use the deprecated Build.VERSION.SDK instead.

link|improve this answer
feedback

Use Build.VERSION or Build.VERSION_CODES.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.