Last active
August 29, 2015 14:05
-
-
Save nohitme/c9d3bb8818f94b772556 to your computer and use it in GitHub Desktop.
.gitignore for Android projects with Gradle
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
# .gitignore for Android projects with Gradle | |
# APK files | |
*.apk | |
*.ap_ | |
# Dalvik VM files | |
*.dex | |
# Java class files | |
*.class | |
# Auto generated files | |
bin/ | |
gen/ | |
# Gradle files | |
build/ | |
.gradle/ | |
# Local configuration file (sdk path, etc) | |
local.properties | |
# Windows thumbnail db | |
Thumbs.db | |
# OSX files | |
.DS_Store | |
# Eclipse project files | |
# .classpath | |
# .project | |
# .settings | |
# Android Studio without project setting files | |
.idea/ | |
*.iml | |
*.ipr | |
*.iws | |
# Android Studio with project setting files | |
# .idea/workspace.xml | |
# .idea/tasks.xml | |
# .idea/libraries/*.xml | |
# .idea/dictionaries/ | |
# gradle.xml | |
# *.iws | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment