i'm developing a couple of apps at the moment one is an image-processing app, the other a google maps app. when i'm developing them i can only have one app at a time on the phone. is there any reason for this? my phone is a Samsung galaxy portal api2.1.

i'd like to have a few apps on my phone that are in the development process for interview purposes. Is this possible?

link|improve this question

79% accept rate
Are you sure you're not just low on internal space so the second app doesn't fit? There shouldn't be any restriction of this sort. – Michael Madsen Feb 5 at 23:29
@MichaelMadsen hi, how can i check this? – turtleboy Feb 5 at 23:37
@MichaelMadsen i've just gone into sd card and phone storage settings. total space = 0.92GB, available space = 839MB, available space = 74.04MB(internal phone storage) – turtleboy Feb 5 at 23:43
are the package names different? – Bill Gary Feb 5 at 23:44
@BillGary hi, no the package names are the same – turtleboy Feb 5 at 23:47
show 1 more comment
feedback

2 Answers

up vote 2 down vote accepted

The only reason can be that the applications share the same package name. Android uses the package name to distinguish which application to launch (using the launcher or startActivity calls). Is there a reason for you to have the same package name for different applications?

link|improve this answer
erm no not really:) i'll try change the package name through eclipse. thanks – turtleboy Feb 6 at 0:21
no luck. i've renamed the package in one of the apps but still only one will install – turtleboy Feb 6 at 0:26
You have to change it in the Android Manifest file and in all the class files, every instance of it. – Bill Gary Feb 6 at 0:35
@bill gary ok, i've just renamed it in the manifest. both apps now install but when i run the app whose package i've renamed, it give a classNotFoundException – turtleboy Feb 6 at 0:45
you need to change every instance of the old packagename to the new one, in manifest, intent calls in the code, etc. easiest way is to hit <ctrl>-f and use the find/replace on every class file and the manifest. – Bill Gary Feb 6 at 0:49
feedback

Uninstall both apps on the device. Then after renaming the package names (all instances of them), run both again and it should work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.