Skip to content

Commit 59a685b

Browse files
committed
initial commit
0 parents  commit 59a685b

File tree

23 files changed

+1524
-0
lines changed

23 files changed

+1524
-0
lines changed

.gitignore

+245
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
1+
2+
# Created by https://www.gitignore.io/api/java,gradle,kotlin,android,intellij
3+
# Edit at https://www.gitignore.io/?templates=java,gradle,kotlin,android,intellij
4+
5+
### Android ###
6+
# Built application files
7+
*.apk
8+
*.ap_
9+
*.aab
10+
11+
# Files for the ART/Dalvik VM
12+
*.dex
13+
14+
# Java class files
15+
*.class
16+
17+
# Generated files
18+
bin/
19+
gen/
20+
out/
21+
release/
22+
23+
# Gradle files
24+
.gradle/
25+
build/
26+
27+
# Local configuration file (sdk path, etc)
28+
local.properties
29+
30+
# Proguard folder generated by Eclipse
31+
proguard/
32+
33+
# Log Files
34+
*.log
35+
36+
# Android Studio Navigation editor temp files
37+
.navigation/
38+
39+
# Android Studio captures folder
40+
captures/
41+
42+
# IntelliJ
43+
*.iml
44+
.idea/workspace.xml
45+
.idea/tasks.xml
46+
.idea/gradle.xml
47+
.idea/assetWizardSettings.xml
48+
.idea/dictionaries
49+
.idea/libraries
50+
# Android Studio 3 in .gitignore file.
51+
.idea/caches
52+
.idea/modules.xml
53+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
54+
.idea/navEditor.xml
55+
56+
# Keystore files
57+
# Uncomment the following lines if you do not want to check your keystore files in.
58+
#*.jks
59+
#*.keystore
60+
61+
# External native build folder generated in Android Studio 2.2 and later
62+
.externalNativeBuild
63+
64+
# Google Services (e.g. APIs or Firebase)
65+
# google-services.json
66+
67+
# Freeline
68+
freeline.py
69+
freeline/
70+
freeline_project_description.json
71+
72+
# fastlane
73+
fastlane/report.xml
74+
fastlane/Preview.html
75+
fastlane/screenshots
76+
fastlane/test_output
77+
fastlane/readme.md
78+
79+
# Version control
80+
vcs.xml
81+
82+
# lint
83+
lint/intermediates/
84+
lint/generated/
85+
lint/outputs/
86+
lint/tmp/
87+
# lint/reports/
88+
89+
### Android Patch ###
90+
gen-external-apklibs
91+
output.json
92+
93+
# Replacement of .externalNativeBuild directories introduced
94+
# with Android Studio 3.5.
95+
.cxx/
96+
97+
### Intellij ###
98+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
99+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
100+
101+
# User-specific stuff
102+
.idea/**/workspace.xml
103+
.idea/**/tasks.xml
104+
.idea/**/usage.statistics.xml
105+
.idea/**/dictionaries
106+
.idea/**/shelf
107+
108+
# Generated files
109+
.idea/**/contentModel.xml
110+
111+
# Sensitive or high-churn files
112+
.idea/**/dataSources/
113+
.idea/**/dataSources.ids
114+
.idea/**/dataSources.local.xml
115+
.idea/**/sqlDataSources.xml
116+
.idea/**/dynamic.xml
117+
.idea/**/uiDesigner.xml
118+
.idea/**/dbnavigator.xml
119+
120+
# Gradle
121+
.idea/**/gradle.xml
122+
.idea/**/libraries
123+
124+
# Gradle and Maven with auto-import
125+
# When using Gradle or Maven with auto-import, you should exclude module files,
126+
# since they will be recreated, and may cause churn. Uncomment if using
127+
# auto-import.
128+
# .idea/modules.xml
129+
# .idea/*.iml
130+
# .idea/modules
131+
# *.iml
132+
# *.ipr
133+
134+
# CMake
135+
cmake-build-*/
136+
137+
# Mongo Explorer plugin
138+
.idea/**/mongoSettings.xml
139+
140+
# File-based project format
141+
*.iws
142+
143+
# IntelliJ
144+
145+
# mpeltonen/sbt-idea plugin
146+
.idea_modules/
147+
148+
# JIRA plugin
149+
atlassian-ide-plugin.xml
150+
151+
# Cursive Clojure plugin
152+
.idea/replstate.xml
153+
154+
# Crashlytics plugin (for Android Studio and IntelliJ)
155+
com_crashlytics_export_strings.xml
156+
crashlytics.properties
157+
crashlytics-build.properties
158+
fabric.properties
159+
160+
# Editor-based Rest Client
161+
.idea/httpRequests
162+
163+
# Android studio 3.1+ serialized cache file
164+
.idea/caches/build_file_checksums.ser
165+
166+
### Intellij Patch ###
167+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
168+
169+
# *.iml
170+
# modules.xml
171+
# .idea/misc.xml
172+
# *.ipr
173+
174+
# Sonarlint plugin
175+
.idea/**/sonarlint/
176+
177+
# SonarQube Plugin
178+
.idea/**/sonarIssues.xml
179+
180+
# Markdown Navigator plugin
181+
.idea/**/markdown-navigator.xml
182+
.idea/**/markdown-navigator/
183+
184+
### Java ###
185+
# Compiled class file
186+
187+
# Log file
188+
189+
# BlueJ files
190+
*.ctxt
191+
192+
# Mobile Tools for Java (J2ME)
193+
.mtj.tmp/
194+
195+
# Package Files #
196+
*.jar
197+
*.war
198+
*.nar
199+
*.ear
200+
*.zip
201+
*.tar.gz
202+
*.rar
203+
204+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
205+
hs_err_pid*
206+
207+
### Kotlin ###
208+
# Compiled class file
209+
210+
# Log file
211+
212+
# BlueJ files
213+
214+
# Mobile Tools for Java (J2ME)
215+
216+
# Package Files #
217+
218+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
219+
220+
### Gradle ###
221+
.gradle
222+
223+
# Ignore Gradle GUI config
224+
gradle-app.setting
225+
226+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
227+
!gradle-wrapper.jar
228+
229+
# Cache of project
230+
.gradletasknamecache
231+
232+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
233+
# gradle/wrapper/gradle-wrapper.properties
234+
235+
### Gradle Patch ###
236+
**/build/
237+
238+
239+
# IntelliJ IDEA
240+
/.idea
241+
.idea
242+
*.iml
243+
244+
# End of https://www.gitignore.io/api/java,gradle,kotlin,android,intellij
245+

0 commit comments

Comments
 (0)