Created
October 22, 2013 20:17
-
-
Save dominicthomas/7107421 to your computer and use it in GitHub Desktop.
Android Studio / Gradle .gitignore, with exclusions for eclipse, maven and ant as well.
This file contains hidden or 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
#==== Android Studio / Gradle | |
# built application files | |
*.apk | |
*.ap_ | |
# files for the dex VM | |
*.dex | |
# Java class files | |
*.class | |
# Generated files | |
bin/ | |
gen/ | |
out/ | |
build/ | |
.gradle/ | |
# Project files | |
*.iml | |
.idea | |
/.idea/workspace.xml | |
# Local configuration file (sdk path, etc) | |
local.properties | |
keystore.properties | |
/local.properties | |
# Other | |
.DS_Store | |
tmp | |
# Idea non-crucial project fileS | |
*.iws | |
#==== Others | |
# Eclipse | |
.project | |
.classpath | |
.settings | |
.checkstyle | |
# Maven | |
target | |
release.properties | |
pom.xml.* | |
# Ant | |
bin | |
gen | |
build.xml | |
ant.properties | |
proguard.cfg | |
proguard-project.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment