Skip to content

Commit 3ff0722

Browse files
Update .gitignore
1 parent 6a8c690 commit 3ff0722

File tree

1 file changed

+165
-6
lines changed

1 file changed

+165
-6
lines changed

.gitignore

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

0 commit comments

Comments
 (0)