sourabh jana wrote:
> What is the procedure to run multiple user application inside android
> emulator ? I am facing a problem while doing so...
> I have created an android application in ecllipse IDE and made it run in
> the emulator then if i again try to import a different application
> inside the emulator the previous application i imported is not present
> in the emulator any more .... how to solve this problem?

You can only have one application per Java package name.

So, if you create com.commonsware.android.AppOne and
com.commonsware.android.AppTwo, they both cannot be in the emulator at
one time, since they share a common Java package (com.commonsware.android).

If you want them to both be installed, choose separate packages.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com
_The Busy Coder's Guide to Android Development_ Version 2.0 Available!

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to