What files should be in my .gitignore
for an Android Studio project?
I\'ve seen several examples that all include .iml
but IntelliJ docs sa
Depends on how your project format is maintained:
You have two options:
.idea
folder which contains
the project specific files).iws
and .ipr
)Ref: http://www.jetbrains.com/idea/webhelp/project.html
Files committed to version control depends on the above:
workspace.xml
and
tasks.xml
.ipr
file and all the .iml
module files, exclude
the .iws
file as it stores user specific settings.Ref: https://intellij-support.jetbrains.com/entries/23393067