Created
March 14, 2017 10:34
-
-
Save crazyhitty/67d45350e3c6655f2c9069f97de4c2d2 to your computer and use it in GitHub Desktop.
Android gitignore
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
# Created by https://www.gitignore.io/api/android,intellij+iml | |
### Android ### | |
# Built application files | |
*.apk | |
*.ap_ | |
# Files for the ART/Dalvik VM | |
*.dex | |
# Java class files | |
*.class | |
# Generated files | |
bin/ | |
gen/ | |
out/ | |
# Gradle files | |
.gradle/ | |
build/ | |
# Local configuration file (sdk path, etc) | |
local.properties | |
# Proguard folder generated by Eclipse | |
proguard/ | |
# Log Files | |
*.log | |
# Android Studio Navigation editor temp files | |
.navigation/ | |
# Android Studio captures folder | |
captures/ | |
# Intellij | |
*.iml | |
.idea/workspace.xml | |
.idea/tasks.xml | |
.idea/gradle.xml | |
.idea/libraries | |
# Keystore files | |
*.jks | |
# External native build folder generated in Android Studio 2.2 and later | |
.externalNativeBuild | |
# Google Services (e.g. APIs or Firebase) | |
google-services.json | |
# Freeline | |
freeline.py | |
freeline/ | |
freeline_project_description.json | |
### Android Patch ### | |
gen-external-apklibs | |
### Intellij+iml ### | |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm | |
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 | |
# User-specific stuff: | |
.idea/**/workspace.xml | |
.idea/**/tasks.xml | |
# Sensitive or high-churn files: | |
.idea/**/dataSources/ | |
.idea/**/dataSources.ids | |
.idea/**/dataSources.xml | |
.idea/**/dataSources.local.xml | |
.idea/**/sqlDataSources.xml | |
.idea/**/dynamic.xml | |
.idea/**/uiDesigner.xml | |
# Gradle: | |
.idea/**/gradle.xml | |
.idea/**/libraries | |
# Mongo Explorer plugin: | |
.idea/**/mongoSettings.xml | |
## File-based project format: | |
*.iws | |
## Plugin-specific files: | |
# IntelliJ | |
/out/ | |
# mpeltonen/sbt-idea plugin | |
.idea_modules/ | |
# JIRA plugin | |
atlassian-ide-plugin.xml | |
# Crashlytics plugin (for Android Studio and IntelliJ) | |
com_crashlytics_export_strings.xml | |
crashlytics.properties | |
crashlytics-build.properties | |
fabric.properties | |
### Intellij+iml Patch ### | |
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023 | |
modules.xml | |
.idea/misc.xml | |
*.ipr | |
# End of https://www.gitignore.io/api/android,intellij+iml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment