I am using eclipse and I created a test android project and the package in the "gen" folder that contains R.java is currently called com.something.test (I thought I was just testing but build my whole app on it!)

This is referenced when loading the app and the phone sometimes displays it so I need to rename it. I tried this by clicking refactor but it regenerated it again with the old name!

Can I rename it?

link|improve this question

I'm not 100% sure but I think you have to change the application's package name in the manifest (then rebuild). – bigstones Mar 30 '11 at 14:34
feedback

4 Answers

up vote 18 down vote accepted

Right click your project, then Android Tools -> Rename Application Name:

enter image description here

Or, if you want to do it manually, go to your manifest file, change the package name, and make a Project Clean.

link|improve this answer
Ah Thankyou! :) – Bex Mar 30 '11 at 14:43
feedback

It gets named to the root package of your app. If you change your app's root package to something else, R.java will exist in that package now.

link|improve this answer
This is incorrect, it's set by android:package which is different to root package – whatsthebeef Mar 23 at 21:38
feedback

Check the AndroidManifest.xml, there's a package attribute on the <manifest> top-level element. That is where R.java is generated and you should be careful renaming it.

link|improve this answer
feedback

For those who attempt to manually change it, the statements that the R.java file is linked is correct. If you simply change it in the manifest, you will get a long sequence of "R cannot be resolved" errors throughout your java files that reference resources. To correct that you'll need to add an import for the R class in each of those files.

So if you had your package originally as: "com.mycomp.myapp.android" and changed it to "com.mynewcomp.myapp.android" you would need to go into each java class file and add:

import com.mynewcomp.myapp.android.R;

If you run the originally suggested rename command on the project this is done for you automatically.

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.