Created
October 18, 2014 00:07
-
-
Save egslava/c14ad402ab730d21c957 to your computer and use it in GitHub Desktop.
.gitignore for Android Studio (Gradle) 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
##### Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm ##### | |
##### (thanks to https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore) ##### | |
/*.iml | |
## Directory-based project format: | |
.idea/ | |
# if you remove the above rule, at least ignore the following: | |
# User-specific stuff: | |
# .idea/workspace.xml | |
# .idea/tasks.xml | |
# .idea/dictionaries | |
# Sensitive or high-churn files: | |
# .idea/dataSources.ids | |
# .idea/dataSources.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: | |
*.ipr | |
*.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 | |
###### Android Studio generated ##### | |
.gradle | |
/local.properties | |
/.idea/workspace.xml | |
/build | |
# Built application files | |
*.apk | |
*.ap_ | |
# Files for the Dalvik VM | |
*.dex | |
# Java class files | |
*.class | |
# Generated files | |
bin/ | |
gen/ | |
####### And standard github .gitignore for Android ##### | |
# Proguard folder generated by Eclipse | |
proguard/ | |
# Log Files | |
*.log | |
###### OS-specific ###### | |
# OS X | |
.DS_Store | |
# Windows thumbnail db (thanks to https://gist.github.com/nohitme/c9d3bb8818f94b772556 ) | |
Thumbs.db |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment