Skip to content

Commit b51c783

Browse files
committedDec 23, 2017
add .gitignore
1 parent b5cf1d6 commit b51c783

File tree

1 file changed

+128
-0
lines changed

1 file changed

+128
-0
lines changed
 

‎.gitignore

+128
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
# Created by https://www.gitignore.io/api/androidstudio
2+
3+
### AndroidStudio ###
4+
# Covers files to be ignored for android development using Android Studio.
5+
6+
# Built application files
7+
*.apk
8+
*.ap_
9+
10+
# Files for the ART/Dalvik VM
11+
*.dex
12+
13+
# Java class files
14+
*.class
15+
16+
# Generated files
17+
bin/
18+
gen/
19+
out/
20+
21+
# Gradle files
22+
.gradle
23+
.gradle/
24+
build/
25+
26+
# Signing files
27+
.signing/
28+
29+
# Local configuration file (sdk path, etc)
30+
local.properties
31+
32+
# Proguard folder generated by Eclipse
33+
proguard/
34+
35+
# Log Files
36+
*.log
37+
38+
# Android Studio
39+
/*/build/
40+
/*/local.properties
41+
/*/out
42+
/*/*/build
43+
/*/*/production
44+
captures/
45+
.navigation/
46+
*.ipr
47+
*~
48+
*.swp
49+
50+
# Android Patch
51+
gen-external-apklibs
52+
53+
# External native build folder generated in Android Studio 2.2 and later
54+
.externalNativeBuild
55+
56+
# NDK
57+
obj/
58+
59+
# IntelliJ IDEA
60+
*.iml
61+
*.iws
62+
/out/
63+
64+
# User-specific configurations
65+
.idea/libraries/
66+
.idea/workspace.xml
67+
.idea/tasks.xml
68+
.idea/.name
69+
.idea/compiler.xml
70+
.idea/copyright/profiles_settings.xml
71+
.idea/encodings.xml
72+
.idea/misc.xml
73+
.idea/modules.xml
74+
.idea/scopes/scope_settings.xml
75+
.idea/dictionaries
76+
.idea/vcs.xml
77+
.idea/jsLibraryMappings.xml
78+
.idea/datasources.xml
79+
.idea/dataSources.ids
80+
.idea/sqlDataSources.xml
81+
.idea/dynamic.xml
82+
.idea/uiDesigner.xml
83+
84+
# OS-specific files
85+
.DS_Store
86+
.DS_Store?
87+
._*
88+
.Spotlight-V100
89+
.Trashes
90+
ehthumbs.db
91+
Thumbs.db
92+
93+
# Legacy Eclipse project files
94+
.classpath
95+
.project
96+
97+
# Mobile Tools for Java (J2ME)
98+
.mtj.tmp/
99+
100+
# Package Files #
101+
*.war
102+
*.ear
103+
104+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
105+
hs_err_pid*
106+
107+
## Plugin-specific files:
108+
109+
# mpeltonen/sbt-idea plugin
110+
.idea_modules/
111+
112+
# JIRA plugin
113+
atlassian-ide-plugin.xml
114+
115+
# Mongo Explorer plugin
116+
.idea/mongoSettings.xml
117+
118+
# Crashlytics plugin (for Android Studio and IntelliJ)
119+
com_crashlytics_export_strings.xml
120+
crashlytics.properties
121+
crashlytics-build.properties
122+
fabric.properties
123+
124+
### AndroidStudio Patch ###
125+
126+
!/gradle/wrapper/gradle-wrapper.jar
127+
128+
# End of https://www.gitignore.io/api/androidstudio

0 commit comments

Comments
 (0)
Please sign in to comment.