Does anyone know how can I check the system version (e.g. 1.0, 2.2, etc.) programatically?
|
|
|
Check
|
|||||||||||||
|
|
Example how to use it:
|
|||||||||||
|
|
You can find out the Android version looking at The documentation recommends you check This is fine as long as you realise that |
|||
|
|
That will give you the actual numbers of your version; aka 2.3.3 or 2.2. The problem with using Build.VERSION.SDK_INT is if you have a rooted phone or custom rom, you could have a none standard OS (aka my android is running 2.3.5) and that will return a null when using Build.VERSION.SDK_INT so Build.VERSION.RELEASE will work no matter what! |
|||||||||||
|
|
I can't comment on the answers, but there is a huge mistake in Kaushik's answer: SDK_INT is not the same as system version.
since constant 4 represents donut: public static final int DONUT = 4; This example is a reason why using 'magic number' is a bad habit. |
||||
|
|
|
Here is another way of implementing it:
|
|||||||||
|
