I have created two packages in eclipse. The actitivites in both the packages use the some common xml files and few diffrent ones.

But once i build the project the R.java for the second package is not created. there is no second package in the gen folder.

I manually build the project and also kept build automatically but nothing is helping me to generate the r.java file for the second package.

Thanks Sudhanshu Bhatt

link|improve this question
1  
R.java can be only one, everything gets created in one R.java only. – Lalit Poptani Aug 10 '11 at 5:53
feedback

3 Answers

up vote 0 down vote accepted

There is just one R.java for the entire project. So what you are seeing is correct. You can have n number of packages under src directory and still there will be just one R.java under gen. Mind you, R.java should not be tampered with as it is self-generated.

link|improve this answer
Ok, but in the second package when i set the content view i have to import that r.java file of the previous package and when i run the activity in the second package it crashes, saying that the resources cannot be found. how do i use the resources of the r.java file in the activities of the second package ? – Sudhanshu Aug 10 '11 at 5:56
Can you post the logcat trace. You can also try a clean build. – PravinCG Aug 10 '11 at 6:00
Yes, try clean and build and check the R.class import sometimes eclipse automatically import the android.R not your won R class. – kameny Aug 10 '11 at 6:06
i tried it occrued once but vanished again . will try doing it again in a new project. thanks :) – Sudhanshu Aug 11 '11 at 10:20
feedback

Only one R class is generated, and it is under the package set under <manifest> in AndroidManifest.xml.

link|improve this answer
feedback

For all package is generated only one R file. it is not important haw many package you create always be one R file

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.