Last active
February 12, 2021 04:17
-
-
Save OmarAlbelbaisy/393e0a6999e380dbd70745ea1e6df520 to your computer and use it in GitHub Desktop.
Git Ignore File for Android Studio 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
# Generated files | |
bin/ | |
gen/ | |
out/ | |
# Gradle files | |
.gradle/ | |
build/ | |
# Proguard folder generated by Eclipse | |
proguard/ | |
# Android Studio Navigation editor temp files | |
.navigation/ | |
# Android Studio captures folder | |
captures/ | |
# IntelliJ | |
.idea/ | |
*.iml | |
# Built application files | |
*.apk | |
*.ap_ | |
# Files for the ART/Dalvik VM | |
*.dex | |
# Java class files | |
*.class | |
# Log Files | |
*.log | |
# Local configuration file (sdk path, etc) | |
local.properties | |
# External native build folders | |
.externalNativeBuild | |
.cxx | |
# MAC files | |
.DS_Store | |
# Keystore files | |
# Uncomment the following line if you do not want to check your keystore files in. | |
#*.jks | |
# Google Services (e.g. APIs or Firebase) | |
google-services.json | |
# Freeline | |
freeline.py | |
freeline/ | |
freeline_project_description.json | |
# fastlane | |
fastlane/report.xml | |
fastlane/Preview.html | |
fastlane/screenshots | |
fastlane/test_output | |
fastlane/readme.md |
Thank you.
You're welcome!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you.