I have an android project developed in Eclipse with the ADT plugin. I want to add it to git and finally host it on github. But i am confused as to which all files will need to be added to git to make it easy for other developers to work on the project.
Obviously, the following needs to be added :
- src folder
- res folder
- AndroidManifest.xml
- proguard-project.txt
- project.properties
But i see other files/directories in my project folder, which i am not sure about :
.classpath
.project
bin/
gen/
proguard/
Can i skip these and expect the other developers to successfully recreate the project to work-on/build it?