What java android files should not be uploaded to the svn server?

I just install SVN for my Android Java project through SubEclipse. Can someone tell me which files I should not upload to the repository? As 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 to be a “build” of files.

Any tips?

+5
source share
1 answer

I would not leave anything in the following directories:

  • / bin
  • / LIBS gene

You will need to check the following files only if you want to enable the settings for the Eclipse project:

  • /. Settings
  • /. ExternalToolBuilders
  • .classpath
  • .project
  • default.properties
+3

All Articles