> How can I publish two versions of my app without changing the package > name, so that users may upgrade to either version, one for Anroid 1.5 > and one for Android 1.6 ?
You cannot do this with the Android Market, at least in the form you describe. > I want to offer new features requiring Android 1.6 as soon as > possible, but not all users will have upgraded to Android 1.6. Option #1: Just wait and only worry about 1.6. Option #2: Create one version of your application that detects what version the device is running and uses reflection to access APIs that are not present in 1.5 that you wish to use in 1.6. Option #3: Distribute one of your two versions outside of the Market, though I have no idea how well that will work if somebody obtained your app from the Market originally. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

