Created
December 12, 2013 15:02
-
-
Save jackgris/7929377 to your computer and use it in GitHub Desktop.
This is one possible configuration, for ignoring files on Mercurial, on 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
# use syntax glob for this file | |
syntax: glob | |
#archivos con extensiones de configuracion local del proyecto o compilados | |
*.class | |
*.apk | |
*.dex | |
*.ap_ | |
*.suo | |
*.properties | |
*.iml | |
*.jar | |
# archivos y carpetas de configuracion local de gradle o de Android Studio | |
.gradle/* | |
.idea/* | |
out/* | |
build-log.* | |
build/* | |
*.idea/ | |
# use syntax regexp for this file | |
syntax: regexp | |
(bin|gen)/.* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment