On Thu, Aug 12, 2010 at 7:00 PM, Zsolt Vasvari <[email protected]> wrote: > The second one is in AndroidManifest.xml: "Attribute minSdkVersion (3) > is lower than the project target API level (8)" > > I have: > > <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8"/> > > and the project is built against Version 8. > > What is this warning saying and what can I do to prevent it from > appearing?
This warning is saying pretty much what it says. You are using API level 8 build tools and are supporting API level 3. Why this is a warning is beyond me. It basically prints the message unless the two values are identical. To prevent it from appearing, you can synchronize the two values, but one would imagine that those values were chosen for other reasons. Or, you can modify SetupTask.java, eliminate this test (lines 297-308 in the code indexed by Google Code Search), and build it into a custom version of the Android Ant extension. I don't see where that hunk of code is controlled by any sort of switch or anything that would allow you to suppress the output. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Warescription: Three Android Books, Plus Updates, One Low Price! -- 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

