On Aug 13, 12:00 am, Zsolt Vasvari <[email protected]> wrote: > What is this warning saying and what can I do to prevent it from > appearing?
It is saying you are building against SDK v8 (Android 2.2) and are happy for your code to run on all version from SDK v3 (Android 1.5) onward. So you need to test on all platforms from Android 1.5 to Android 2.2 inclusive before you release. If you are using any features that are not present in any of the older releases you should either change to a higher minSDKversion or use Java reflection to use the newer classes/methods. As regards getting rid of it - suppressing the warning - I have yet to find a way. I would love to as I use Andoid library projects and I get this warning for each Project and Libray in the build. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

