Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My keystore is corrupt, therefore the Android Market is requiring me to rename the app and resubmit it. However, whenever I go to edit the package names in Manifest and throughout the files, it gives me tons of errors.

What's the proper way to change the application name?

Thanks!

share|improve this question
thankfully they added a "magical, change package name button" since 2010 - see @Marc Bernstein's answer - stackoverflow.com/a/4025633/383414 – Richard Le Mesurier Feb 8 at 7:46

10 Answers

up vote 12 down vote accepted

If you're using Eclipse, you could try these instructions. They're specifically for the GestureBuilder sample but should apply to any application as far as I can tell.

Also, be sure you remembered to rename the package itself along with the references to it in the files. In Eclipse you can see the name of the package in the file explorer window/tree view on the left hand side.

share|improve this answer
This is probably the best way to do it, there is no magical, change package name button. – blindstuff Oct 26 '10 at 16:06
3  
Yes there is. See @Marc Bernstein's answer. – Mark Phillip Oct 28 '11 at 21:20

There is a way to change the package name easily in Eclipse. Right click on your project, scroll down to Android Tools, and then click on Rename Application Package.

share|improve this answer
Just tried Eldar's and it worked - but I'm sure this will work, too. – Allen Gingrich Oct 26 '10 at 16:35
3  
This answer is much easier. This should have been accepted. – Ashwin Nov 7 '12 at 9:14
1  
Very easy way! Excellent. – MastAvalons Nov 25 '12 at 15:48
This is correct answer, but current ADT is broken, and it BREAKS every reference to your R class. So you have to click on each individual file, do "ctrl-shift-o" (or cmd-shift-o on Mac), and select your new-package-named R (DO NOT select android.R! things will break horribly), then hit save. ... and repeat for EVERY individual file :( – Adam May 17 at 11:18

here's how you could do this in Eclipse:

> Right-click on the package name (src/com.android.gesture.builder).
> Select Refactor > Rename and change the name, for example to
> com.android.gestureNEW.builder. Open the manifest file. Inside the
> <manifest> tag, change the package name to
> com.android.gestureNEW.builder. Open each of the two Activity files
> and do Ctrl-Shift-O to add missing import packages, then save each
> file. Run the GestureBuilder application on the emulator.

Link to post

Update super easy way right click on your project... enter image description here

share|improve this answer
2  
Pretty awesome way to do this! – Dude Sep 25 '12 at 9:19
vote me up if you like :) – AZ_ Sep 25 '12 at 11:02
1  
Already done, for sure.;-) – Dude Sep 26 '12 at 12:58

Bernstein has the method, use the Eclipse tool, "Rename Application Package", you may have to do some clean-up even after the fact. Also, Eclipse sometimes loses track of things when you make changes to a project. You may have to use the "Clean Project" tool (under the "Project" menu.) If that doesn't work, you may have to close and restart Eclipse. Voo-doo solutions, but Eclipse can be that way.

share|improve this answer

I found the easiest solution was to use Regexxer to replace "com.package.name" with "com.newpackage.name", then rename the directories properly. Super easy, super fast.

share|improve this answer

Changing package name is a pain in the ass. It looks like different methods work for different people. My solution is quick and error free. Looks like no cleaning or resetting eclipse is needed.

  1. Right click on the package name then Refractor > Rename.
  2. Right click on the project name Android tools > Rename Application Package.
  3. Manually set the package names in the Manifest that have not been changed by the previous steps.
share|improve this answer
  1. Fist change the package name in the manifest file
  2. Re-factor > Rename the name of the package in src folder and put a tick for rename subpackages
  3. That is all you are done.
share|improve this answer

There is also another solution for users without Eclipse, simply change the package attribute in <manifest> tag in AndroidManifest.xml, by replacing the the old package name used with a new one. Note: You have to adjust the all the related import statements and related folders manually in your project than, too.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="new.package.name"
    .....
</manifest>
share|improve this answer

Without Eclipse:

  1. Change package name and Activity names in AndroidManifext.xml and anywhere else it shows up in .xml files (custom view names, etc)

  2. Update package import statement across all source files

  3. Rename all folders to match the package name. Folder locations:
    a. bin/classes
    b. gen
    c. src

  4. Update the project name in build.xml (or your apk's name won't change)

  5. Delete all the .class files in bin/classes/com/example/myapp/ (if you skip this step the files don't get rewritten during build and dex give a bunch of trouble processing "class name does not match path" errors

  6. Delete gen/com/example/myapp/BuildConfig.java (I don't know why deleting BuildConfig.class in step 3a didn't cause dex to update it's path to this, but until I deleted BuildConfig.java it kept recreating gen/com/oldapp_example/oldapp and putting BuildConfig.class in there. I don't know why R.java from the same location doesn't have this problem. I suspect BuildConfig.java is auto-generated in pre-compile but R.java is not)

The above 6 steps are what I did to get my package name changed and get a successful* build. There may be a better way to handle steps 5 and 6 via dex commands to update paths, or perhaps by editing classes.dex.d in the root directory of the project. I'm not familiar with dex or if it's ok to delete/edit classes.dex.d so I went with the method of deleting .class files that I know will be regenerated in the build. I then checked classes.dex.d to see what still needed to be updated.

*No errors or warnings left in my build EXCEPT dex and apkbuilder both state "Found Deleted Target File" with no specifics about what that file is. Not sure if this shows up in every build, if it was there before I messed with my package name, or if it's a result of my deletions and I'm missing a step.

share|improve this answer

Alternative:

  1. Open AndroidManifest.xml
  2. Change package="NEW NAME" within manifest tag.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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