Created
February 6, 2014 22:19
-
-
Save PatrickDattilio/8853685 to your computer and use it in GitHub Desktop.
Android Studio hgignore - http://digitalassassin.net/2013/12/hgignore-file-for-android-studio/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#apks | |
glob:*.apk | |
glob:*.ap_ | |
# files for the dex VM | |
glob:*.dex | |
# Java class files | |
glob:*.class | |
# generated files | |
bin/ | |
gen/ | |
# Ignore gradle files | |
.gradle/ | |
build/ | |
# Local configuration file (sdk path, etc) | |
local.properties | |
# Proguard folder generated by Eclipse | |
proguard/ | |
#Android Studio - see https://intellij-support.jetbrains.com/entries/23393067 | |
.idea/workspace.xml | |
.idea/tasks.xml | |
.iws | |
#Android Studio put this in the sample .gitignore file | |
.DS_Store |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment