On May 11, 10:32 am, Mark Wyszomierski <[email protected]> wrote: > > the app will still work on 1.5+. Just make sure you don't use any SDK > methods that don't exist on earlier platforms without checking the > user's local sdk version. >
A further tip: as one of the ways to check you aren't using API that won't work on 1.5, set your project properties to 1.5 and see if there are compile errors. Do this once in a while, and at least once before every release. If any methods come up that do not compile on 1.5, and you still want to use them, you'll need to use reflection to make them compile for 1.5. It's messy but it works. Nathan -- 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

