What files should be ignored in Mercurial when using Android Studio (1.0 RC4 Windows) for development?
Creating new application project also creates .gitignore
I suggest you add all the files listed above to .hgignore
except for the build.gradle
and settings.gradle
. The files in .idea
directory are generated automatically by Android Studio
and you shouldn't track them, or manually edit. I don't think you will ever need to edit gradlew
or gradlew.bat
so you can ingore them also. You can add gradle.properties
and gradle-wrapper.properties
later, when you will need to change the default versions (personally, I've these two to ignore also).