Last active
February 14, 2017 20:03
-
-
Save lsurvila/6b36b6d99b7e95ecf038f2e26b23a6a8 to your computer and use it in GitHub Desktop.
.gitignore for Android
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
# Local configuration file (sdk path, etc) | |
local.properties | |
# Windows thumbnail db | |
Thumbs.db | |
# OSX files | |
.DS_Store | |
*.pydevproject | |
.metadata | |
bin/** | |
*.tmp | |
*.bak | |
*.swp | |
*~.nib | |
.settings/ | |
.loadpath | |
# External tool builders | |
.externalToolBuilders/ | |
# Locally stored "Eclipse launch configurations" | |
*.launch | |
# CDT-specific | |
.cproject | |
# PDT-specific | |
.buildpath | |
# Eclipse project files | |
.classpath | |
.project | |
.settings | |
target/ | |
gen-external-apklibs/ | |
# Android Studio | |
.idea | |
bin/ | |
gen/ | |
out/ | |
build/ | |
*.iml | |
*.ipr | |
*.iws | |
# Crashlytics | |
com_crashlytics_export_strings.xml | |
crashlytics-build.properties | |
# Built application files | |
*.apk | |
*.ap_ | |
# Files for the Dalvik VM | |
*.dex | |
# Java class files | |
*.class | |
/*/build/ | |
# Proguard folder generated by Eclipse | |
proguard\ | |
# Log Files | |
*.log | |
# Report files | |
/app/manifest-merger-release-report.txt | |
/captures | |
.externalNativeBuild |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment