Last active
September 10, 2019 13:48
-
-
Save Dssdiego/16c5e9793830e767ea960e67423539c5 to your computer and use it in GitHub Desktop.
Android Gitignore
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_ | |
*.aab | |
# Files for the ART/Dalvik VM | |
*.dex | |
# Java class files | |
*.class | |
# Keystore files | |
*.jks | |
# Generated files | |
bin/ | |
gen/ | |
out/ | |
release/ | |
# Proguard folder generated by Eclipse | |
proguard/ | |
# Log Files | |
*.log | |
# External native build folder generated in Android Studio 2.2 and later | |
.externalNativeBuild | |
### Android Patch ### | |
gen-external-apklibs | |
# Android Studio Navigation editor temp files | |
.navigation/ | |
# Android Studio captures folder | |
captures/ | |
# Local configuration file (sdk path, etc) | |
local.properties | |
# Gradle files | |
.gradle/ | |
build/ | |
# Signing files | |
.signing/ | |
# User-specific configurations | |
.idea/libraries/ | |
.idea/gradle.xml | |
.idea/workspace.xml | |
.idea/dictionaries | |
.idea/tasks.xml | |
.idea/.name | |
.idea/compiler.xml | |
.idea/copyright/profiles_settings.xml | |
.idea/encodings.xml | |
.idea/misc.xml | |
.idea/caches | |
.idea/modules.xml | |
.idea/scopes/scope_settings.xml | |
.idea/vcs.xml | |
*.iml | |
# Crashlytics plugin (for Android Studio and IntelliJ) | |
com_crashlytics_export_strings.xml | |
crashlytics.properties | |
crashlytics-build.properties | |
fabric.properties | |
# fastlane | |
fastlane/report.xml | |
fastlane/Preview.html | |
fastlane/screenshots | |
fastlane/test_output | |
fastlane/readme.md | |
# lint | |
lint/intermediates/ | |
lint/generated/ | |
lint/outputs/ | |
lint/tmp/ | |
# Version control | |
vcs.xml | |
# OS-specific files | |
.DS_Store | |
.DS_Store? | |
.AppleDouble | |
.LSOverride | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db | |
# Files that might appear in the root of a volume | |
.DocumentRevisions-V100 | |
.fseventsd | |
.Spotlight-V100 | |
.TemporaryItems | |
.Trashes | |
.VolumeIcon.icns | |
.com.apple.timemachine.donotpresent | |
# Directories potentially dateCreated 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