Created
May 30, 2016 09:38
-
-
Save orangex/2a198d77031a1f83515c601daa532f0a 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
# Intellij | |
*.iml | |
*.iws | |
*.ipr | |
.idea | |
#.idea/workspace.xml | |
#.idea/libraries | |
#.idea/.name | |
#.idea/compiler.xml | |
#.idea/copyright/profiles_settings.xml | |
#.idea/encodings.xml | |
#.idea/misc.xml | |
#.idea/modules.xml | |
#.idea/vcs.xml | |
#.idea/scopes/scope_settings.xml | |
#.idea/tasks.xml | |
#.idea/dictionaries | |
#.idea/jsLibraryMappings.xml | |
# Built app files | |
*.apk | |
# Files for the Dalvik VM | |
*.dex | |
# Java class files | |
*.class | |
# Generated files | |
**/bin/ | |
**/gen/ | |
**/out/ | |
# Local config file | |
/local.properties | |
# Log files | |
*.log | |
# Android Studio Navigation editor temp files | |
.navigation/ | |
#Android Studio captures folder | |
**/captures/ | |
# Gradle files | |
.gradle | |
**/build/ | |
# OSX files | |
.DS_Store | |
#NDK | |
obj/ | |
# Keystore files | |
*.jks | |
# Others | |
#**/.gitignore |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment