Created
August 12, 2014 02:28
-
-
Save finian/84fbefb8c3719e5a4461 to your computer and use it in GitHub Desktop.
.gitignore for Android projects
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
## Base on https://github.com/github/gitignore | |
## Android ## | |
# Built application files | |
*.apk | |
*.ap_ | |
# Files for the Dalvik VM | |
*.dex | |
# Java class files | |
*.class | |
# Generated files | |
bin/ | |
gen/ | |
# Gradle files | |
.gradle/ | |
build/ | |
# Local configuration file (sdk path, etc) | |
local.properties | |
# Proguard folder generated by Eclipse | |
proguard/ | |
# Log Files | |
*.log | |
## Android Studio ## | |
#.gradle | |
#/local.properties | |
/.idea/workspace.xml | |
#.DS_Store | |
#/build | |
## Eclipse ## | |
*.pydevproject | |
.metadata | |
#.gradle | |
#bin/ | |
tmp/ | |
*.tmp | |
*.bak | |
*.swp | |
*~.nib | |
#local.properties | |
.settings/ | |
.loadpath | |
# External tool builders | |
.externalToolBuilders/ | |
# Locally stored "Eclipse launch configurations" | |
*.launch | |
# CDT-specific | |
.cproject | |
# PDT-specific | |
.buildpath | |
# sbteclipse plugin | |
.target | |
# TeXlipse plugin | |
.texlipse | |
## OSX ## | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Icon must end with two \r | |
Icon | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
# Directories potentially created on remote AFP share | |
.AppleDB | |
.AppleDesktop | |
Network Trash Folder | |
Temporary Items | |
.apdisk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment