Skip to content

Commit c6254d3

Browse files
authored
Update .gitignore
1 parent cc55559 commit c6254d3

1 file changed

Lines changed: 220 additions & 3 deletions

File tree

.gitignore

Lines changed: 220 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
*.iml
2-
.gradle
31
/local.properties
42
/.idea/caches
53
/.idea/misc.xml
@@ -11,6 +9,225 @@
119
.DS_Store
1210
/build
1311
/captures
14-
.externalNativeBuild
1512
.cxx
13+
.kotlin/*
14+
15+
# Created by https://www.toptal.com/developers/gitignore/api/kotlin,java,android,androidstudio,visualstudiocode
16+
# Edit at https://www.toptal.com/developers/gitignore?templates=kotlin,java,android,androidstudio,visualstudiocode
17+
18+
### Android ###
19+
# Gradle files
20+
.gradle/
21+
build/
22+
23+
# Local configuration file (sdk path, etc)
1624
local.properties
25+
26+
# Log/OS Files
27+
*.log
28+
29+
# Android Studio generated files and folders
30+
captures/
31+
.externalNativeBuild/
32+
.cxx/
33+
*.apk
34+
output.json
35+
36+
# IntelliJ
37+
*.iml
38+
.idea/
39+
misc.xml
40+
deploymentTargetDropDown.xml
41+
render.experimental.xml
42+
43+
# Keystore files
44+
*.jks
45+
*.keystore
46+
47+
# Google Services (e.g. APIs or Firebase)
48+
google-services.json
49+
50+
# Android Profiling
51+
*.hprof
52+
53+
### Android Patch ###
54+
gen-external-apklibs
55+
56+
# Replacement of .externalNativeBuild directories introduced
57+
# with Android Studio 3.5.
58+
59+
### Java ###
60+
# Compiled class file
61+
*.class
62+
63+
# Log file
64+
65+
# BlueJ files
66+
*.ctxt
67+
68+
# Mobile Tools for Java (J2ME)
69+
.mtj.tmp/
70+
71+
# Package Files #
72+
*.jar
73+
*.war
74+
*.nar
75+
*.ear
76+
*.zip
77+
*.tar.gz
78+
*.rar
79+
80+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
81+
hs_err_pid*
82+
replay_pid*
83+
84+
### Kotlin ###
85+
# Compiled class file
86+
87+
# Log file
88+
89+
# BlueJ files
90+
91+
# Mobile Tools for Java (J2ME)
92+
93+
# Package Files #
94+
95+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
96+
97+
### VisualStudioCode ###
98+
.vscode/*
99+
!.vscode/settings.json
100+
!.vscode/tasks.json
101+
!.vscode/launch.json
102+
!.vscode/extensions.json
103+
!.vscode/*.code-snippets
104+
105+
# Local History for Visual Studio Code
106+
.history/
107+
108+
# Built Visual Studio Code Extensions
109+
*.vsix
110+
111+
### VisualStudioCode Patch ###
112+
# Ignore all local history of files
113+
.history
114+
.ionide
115+
116+
### AndroidStudio ###
117+
# Covers files to be ignored for android development using Android Studio.
118+
119+
# Built application files
120+
*.ap_
121+
*.aab
122+
123+
# Files for the ART/Dalvik VM
124+
*.dex
125+
126+
# Java class files
127+
128+
# Generated files
129+
bin/
130+
gen/
131+
out/
132+
133+
# Gradle files
134+
.gradle
135+
136+
# Signing files
137+
.signing/
138+
139+
# Local configuration file (sdk path, etc)
140+
141+
# Proguard folder generated by Eclipse
142+
proguard/
143+
144+
# Log Files
145+
146+
# Android Studio
147+
/*/build/
148+
/*/local.properties
149+
/*/out
150+
/*/*/build
151+
/*/*/production
152+
.navigation/
153+
*.ipr
154+
*~
155+
*.swp
156+
157+
# Keystore files
158+
159+
# Google Services (e.g. APIs or Firebase)
160+
# google-services.json
161+
162+
# Android Patch
163+
164+
# External native build folder generated in Android Studio 2.2 and later
165+
.externalNativeBuild
166+
167+
# NDK
168+
obj/
169+
170+
# IntelliJ IDEA
171+
*.iws
172+
/out/
173+
174+
# User-specific configurations
175+
.idea/caches/
176+
.idea/libraries/
177+
.idea/shelf/
178+
.idea/workspace.xml
179+
.idea/tasks.xml
180+
.idea/.name
181+
.idea/compiler.xml
182+
.idea/copyright/profiles_settings.xml
183+
.idea/encodings.xml
184+
.idea/misc.xml
185+
.idea/modules.xml
186+
.idea/scopes/scope_settings.xml
187+
.idea/dictionaries
188+
.idea/vcs.xml
189+
.idea/jsLibraryMappings.xml
190+
.idea/datasources.xml
191+
.idea/dataSources.ids
192+
.idea/sqlDataSources.xml
193+
.idea/dynamic.xml
194+
.idea/uiDesigner.xml
195+
.idea/assetWizardSettings.xml
196+
.idea/gradle.xml
197+
.idea/jarRepositories.xml
198+
.idea/navEditor.xml
199+
200+
# Legacy Eclipse project files
201+
.classpath
202+
.project
203+
.cproject
204+
.settings/
205+
206+
# Mobile Tools for Java (J2ME)
207+
208+
# Package Files #
209+
210+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
211+
212+
## Plugin-specific files:
213+
214+
# mpeltonen/sbt-idea plugin
215+
.idea_modules/
216+
217+
# JIRA plugin
218+
atlassian-ide-plugin.xml
219+
220+
# Mongo Explorer plugin
221+
.idea/mongoSettings.xml
222+
223+
# Crashlytics plugin (for Android Studio and IntelliJ)
224+
com_crashlytics_export_strings.xml
225+
crashlytics.properties
226+
crashlytics-build.properties
227+
fabric.properties
228+
229+
### AndroidStudio Patch ###
230+
231+
!/gradle/wrapper/gradle-wrapper.jar
232+
233+
# End of https://www.toptal.com/developers/gitignore/api/kotlin,java,android,androidstudio,visualstudiocode

0 commit comments

Comments
 (0)