[android-developers] Re: Retrieving Android API version programmatically on Android 1.5?

2011-10-05 Thread lbendlin
Integer.parseInt(Build.VERSION.SDK); -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: Retrieving Android API version programmatically on Android 1.5?

2011-10-05 Thread saex
that method is deprecated, i hope they will not remove it to suport this function in Android 1.5 On 5 oct, 13:43, lbendlin l...@bendlin.us wrote: Integer.parseInt(Build.VERSION.SDK); -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Re: Retrieving Android API version programmatically on Android 1.5?

2011-10-05 Thread Mark Murphy
Deprecated in Android generally means we will support it as long as possible, but we think that there is a better option. In this case, I would be surprised if Build.VERSION.SDK is removed within the next decade. On Wed, Oct 5, 2011 at 8:02 AM, saex elpablos...@gmail.com wrote: that method is