Which files do i have to put on ignore in SVN when im using Android Studio?
Currently i have ignored this files:
*.idea
gradle
*.iml
build
local.properties
.DS_Store
Which files do i have to put on ignore in SVN when im using Android Studio?
Currently i have ignored this files:
*.idea
gradle
*.iml
build
local.properties
.DS_Store
When you create an Android Studio project, .gitignore files will be also generated. Based on that, in the parent folder we exclude:
-.gradle
-/local.properties
-/.idea/workspace.xml
-.DS_Store
And in the modules directory:
-/build
Personally when I'm working on Android project I ignore the folder bin , project.property, classpath, settins/org.eclipse.jdt.core.pref , proguard-project.txt , local.properties .
I don't use Ant or Maven so maybe there are others files to ignore.