Build.VERSION.SDK_INT was added only in API level 4 (1.6). Is it possible to determine if phone has API level 3 (1.5) ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||
|
|
|
You can use Build.VERSION.SDK which returns a String and is available on all versions of Android prior to 1.6. It is marked as deprecated so you should use reflection to ensure that your app doesn't encounter problems on future versions of Android. So, to ensure all versions < 1.6 are supported you could use a modified version of Alexs code;
|
||||
|
|
|
Since it is all about static fields it is a bit easier to do this as shown below:
|
|||
|
|
|
I would try to access that property via reflection, if it fails, you're in Android 1.5. |
|||
|
|