Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What java android files should I not upload to my SVN Server?

I just setup SVN for my java Android project through SubEclipse. Can anyone advise me on which files I should not upload to the repository? Just like in Objective C I have my build files in a separate folder, I still don't know how the build system in Java organizes files and what is considered "build" files.

Any advice?

like image 924
programmerdave Avatar asked Oct 25 '22 08:10

programmerdave


1 Answers

I would leave out anything in the following directories:

  • /bin
  • /gen
  • /libs

You will need to check in the following files only if you want to include your Eclipse project settings:

  • /.settings
  • /.externalToolBuilders
  • .classpath
  • .project
  • default.properties
like image 117
Aaron C Avatar answered Nov 15 '22 03:11

Aaron C