Stoyan Damov wrote: > I have a question - can I have 2 apps, where the 1st app is in the > package com.company.games.Game1 and the other in > com.company.games.Game2
I'm not sure what Game1 and Game2 are. If they are part of the package, then yes, that should work, give or take any case-related issues. I normally see these things as lowercase, so I don't know if the mixed case might cause problems. > i.e. I guess the common prefix com.company.games is not a problem, > right (just like "com." is not a problem for most of the apps)? Let's suppose you have a manifest that starts out like: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.company.games" android:versionCode="1" android:versionName="1.0"> I cannot have two applications with that same package attribute. If I try to have more than one with that package, the most-recently-installed application "wins". -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Warescription: Three Android Books, Plus Updates, $35/Year --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

