Changing App name in Eclipse

I´ve finished my quiz app a few days ago. Now, I want to publish a second quiz with different questions. I copied the project in Eclipse and changed the questions. Now, when install it on my smartphone, it tells me that this app is already there. So where can I change the name that the two apps are different? Or do I have to change something else?

asked Feb 1, 2013 at 10:11 user896692 user896692 2,371 7 7 gold badges 36 36 silver badges 57 57 bronze badges

6 Answers 6

You need to change the package name:

 Right click on the project -> Android Tools -> Rename Application package 
answered Feb 1, 2013 at 10:13 16k 5 5 gold badges 61 61 silver badges 73 73 bronze badges just refactoring the package names doesn't work so I came here. This method works just dandy. Commented Aug 27, 2013 at 2:47

If you haven't done it yet. you need to change the package name like above but go into strings.xml and modify "your app name " by changing simply the text that in this case says your app name.

12.1k 15 15 gold badges 57 57 silver badges 72 72 bronze badges answered Apr 30, 2014 at 11:11 21 1 1 bronze badge

When you are testing, you can make do with uninstalling one and installing the other. However, if you intend to release two applications (or any number of applications) on Google Play, you should always have different package names for each.

The way the Google Play mechanism works is that different applications can have the same name. They are however, differentiated with their package names. No two applications on the Google Play store can share the same package names.

Here is a nice article titled, Things That Cannot Change by Dianne Hackborn.

Of course, use this (as already answered by Nunu), to change the Package name of your second application: Right click on the project -> Android Tools -> Rename Application package