Very basic question. I plan to do our builds via Hudson and have android apk files available for download there. Is R.java in the /gen directory something that you check-in with you VCS? Or is it something that needs to be ignored and android sdk will generate every time if it doesn't exist?

link|improve this question

1  
I love stackover flow. Got an answer in less time than I expected. – Amir Raminfar Nov 4 '10 at 16:34
feedback

4 Answers

up vote 10 down vote accepted

The entire gen folder is automatically generated and shouldn't be checked into VCS.

link|improve this answer
1  
good point, thanks – orip Sep 4 '11 at 12:35
feedback

Nothing in gen should go into your repository. Add gen to your .gitignore to avoid mistakes/cluttered git status.

link|improve this answer
feedback

No, you don't have to include any of the gen/ files. You must exclude the gen directory itself, otherwise you could ran into problems when updating/committing to git or any other VCS.

link|improve this answer
feedback

You need to ignore this file. Ant build task create this 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.