I am having a problem with the gen/r.java file. When I create or edit files in resources such as layout /values/strings.xml e.t.c the r.java file does not update. I have followed a tutorial and it for some reason won't update. There are no errors in the xml file.

I have heard people say "use clean/build" e.t.c but this just removes the r.java file and I am unable to get it back after many attempts. This results in me having to redo the whole project again just to get the gen file back. Why is this happening?

link|improve this question

0% accept rate
Did you change the package of your application? If so, you should update it in the androidManifest.xml as well. – rekaszeru Apr 28 '11 at 20:17
feedback

5 Answers

I ran into this before, I work around we discovered was that the R.java file only gets generated after an edit to the Mainfest.xml file. So just make a quick change to that file.

link|improve this answer
Hi sorry for the daft question as I'm a bit new to android programming. Which changes should I make to the Mainfest.xml file? There doesn't seem to be any errors? – Superunknown Apr 28 '11 at 20:39
I think he just means put an extra space anywhere and save. He expects this to force the regeneration of R.java. – Haphazard Apr 28 '11 at 20:55
Just make a fake modification, ie "adding a whitespace, then deleting it" – Albinoswordfish Apr 28 '11 at 20:56
Thank's very much. I hope this works! – Superunknown Apr 28 '11 at 21:00
Hi just letting you know I have done the same and there's no effect :/ Same problem. – Superunknown Apr 28 '11 at 21:32
show 3 more comments
feedback

Project -> Clean works for me. R.java is deleted & Auto generated.

link|improve this answer
feedback

Check if ID foreach UI is like

android:id="@android:id/tabs"

I had the same problem, and changing in this way:

android:id="@+id/tabs"

Solved the problem!

link|improve this answer
feedback

There is a good possibility this is because you are not abiding by appropriate naming conventions in your res folder. I had this same issue and - using intellij IDE - right clicked on the res file and hit 'Force regenerate R'. Intellij told me:

Invalid file name: must contain only [a-z0-9]

So, in addition to what others have said here, check your naming conventions and make sure you haven't included any caps, underscores, dashes, etc. in the files you put into your res folder.

link|improve this answer
feedback

I have had this problem before, here are some ways to fix it

1. make sure in the Manifest.xml that the package is set to the right name.
2. make sure your gen matches your package name example 

gen/com.expample.pack/R.java

Also I have found if you edit it in eclipse it will regenerate.

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.