Last active
September 2, 2021 11:41
-
-
Save asadmukhtar28/6cd7d1456dc78866eb44028bd43cfa78 to your computer and use it in GitHub Desktop.
.gitignore file for Android Studio Project, it contains all the files and paths that doesn`t need to pushed to repository.
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
#built application files | |
*.apk | |
*.ap_ | |
*.aab | |
# files for the dex VM | |
*.dex | |
# Java class files | |
*.class | |
# generated files | |
bin/ | |
gen/ | |
# Local configuration file (sdk path, etc) | |
local.properties | |
# Windows thumbnail db | |
Thumbs.db | |
# OSX files | |
.DS_Store | |
# Android Studio | |
*.iml | |
.idea | |
/local.properties | |
/.idea/caches | |
/.idea/libraries | |
/.idea/modules.xml | |
/.idea/workspace.xml | |
/.idea/navEditor.xml | |
/.idea/assetWizardSettings.xml | |
#.idea/workspace.xml - remove # and delete .idea if it better suit your needs. | |
.gradle | |
build/ | |
.navigation | |
captures/ | |
output.json | |
#NDK | |
obj/ | |
.externalNativeBuild | |
/app/production/release/output-metadata.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment