jgf1979 wrote: > I have developed two games, but when i try and install the second it > replaces the first. In other words, Android belives the two games to > be the same application. > > I have tried to find out this information, but my question is: what > uniquely identifies an Android application? What is Android looking > at to distinguish one app from another?
The Java package is the unique identifier, at least in terms of the effect you are experiencing. This is the value specified as the package attribute in the root <manifest> tag in your AndroidManifest.xml file. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy 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 -~----------~----~----~----~------~----~------~--~---

