Created
September 21, 2014 12:17
-
-
Save suau/911ff49d08639bd9590b to your computer and use it in GitHub Desktop.
A .gitignore file for gradle based android projects
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
# built application files | |
*.apk | |
*.ap_ | |
# files for the dex VM | |
*.dex | |
# Java class files | |
*.class | |
# generated files (ignores any bin and gen folders) | |
bin/ | |
gen/ | |
out/ | |
# Local configuration file (sdk path, etc) | |
local.properties | |
# Eclipse project files | |
.classpath | |
.project | |
# Proguard folder generated by Eclipse | |
proguard/ | |
# Intellij project files | |
*.iml | |
*.ipr | |
*.iws | |
.idea/ | |
workspace.xml | |
tasks.xml | |
# mac folder files | |
.DS_Store | |
# Android Studio | |
.gradle | |
/local.properties | |
/.idea/workspace.xml | |
/.idea/libraries | |
/build | |
build/ | |
# from ant | |
project.properties |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment