Skip to content

Commit e5fbb67

Browse files
committed
[INIT] 프로젝트 초기 세팅
0 parents  commit e5fbb67

37 files changed

+1142
-0
lines changed

.gitignore

+237
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,237 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/kotlin,android,androidstudio
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=kotlin,android,androidstudio
4+
5+
### Android ###
6+
# Built application files
7+
*.apk
8+
*.aar
9+
*.ap_
10+
*.aab
11+
12+
# Files for the ART/Dalvik VM
13+
*.dex
14+
15+
# Java class files
16+
*.class
17+
18+
# Generated files
19+
bin/
20+
gen/
21+
out/
22+
# Uncomment the following line in case you need and you don't have the release build type files in your app
23+
# release/
24+
25+
# Gradle files
26+
.gradle/
27+
build/
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 Navigation editor temp files
39+
.navigation/
40+
41+
# Android Studio captures folder
42+
captures/
43+
44+
# IntelliJ
45+
*.iml
46+
.idea/workspace.xml
47+
.idea/tasks.xml
48+
.idea/gradle.xml
49+
.idea/assetWizardSettings.xml
50+
.idea/dictionaries
51+
.idea/libraries
52+
.idea/jarRepositories.xml
53+
# Android Studio 3 in .gitignore file.
54+
.idea/caches
55+
.idea/modules.xml
56+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
57+
.idea/navEditor.xml
58+
59+
# Keystore files
60+
# Uncomment the following lines if you do not want to check your keystore files in.
61+
#*.jks
62+
#*.keystore
63+
64+
# External native build folder generated in Android Studio 2.2 and later
65+
.externalNativeBuild
66+
.cxx/
67+
68+
# Google Services (e.g. APIs or Firebase)
69+
# google-services.json
70+
71+
# Freeline
72+
freeline.py
73+
freeline/
74+
freeline_project_description.json
75+
76+
# fastlane
77+
fastlane/report.xml
78+
fastlane/Preview.html
79+
fastlane/screenshots
80+
fastlane/test_output
81+
fastlane/readme.md
82+
83+
# Version control
84+
vcs.xml
85+
86+
# lint
87+
lint/intermediates/
88+
lint/generated/
89+
lint/outputs/
90+
lint/tmp/
91+
# lint/reports/
92+
93+
# Android Profiling
94+
*.hprof
95+
96+
### Android Patch ###
97+
gen-external-apklibs
98+
output.json
99+
100+
# Replacement of .externalNativeBuild directories introduced
101+
# with Android Studio 3.5.
102+
103+
### Kotlin ###
104+
# Compiled class file
105+
106+
# Log file
107+
108+
# BlueJ files
109+
*.ctxt
110+
111+
# Mobile Tools for Java (J2ME)
112+
.mtj.tmp/
113+
114+
# Package Files #
115+
*.jar
116+
*.war
117+
*.nar
118+
*.ear
119+
*.zip
120+
*.tar.gz
121+
*.rar
122+
123+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
124+
hs_err_pid*
125+
126+
### AndroidStudio ###
127+
# Covers files to be ignored for android development using Android Studio.
128+
129+
# Built application files
130+
131+
# Files for the ART/Dalvik VM
132+
133+
# Java class files
134+
135+
# Generated files
136+
137+
# Gradle files
138+
.gradle
139+
140+
# Signing files
141+
.signing/
142+
143+
# Local configuration file (sdk path, etc)
144+
145+
# Proguard folder generated by Eclipse
146+
147+
# Log Files
148+
149+
# Android Studio
150+
/*/build/
151+
/*/local.properties
152+
/*/out
153+
/*/*/build
154+
/*/*/production
155+
*.ipr
156+
*~
157+
*.swp
158+
159+
# Keystore files
160+
*.jks
161+
*.keystore
162+
163+
# Google Services (e.g. APIs or Firebase)
164+
# google-services.json
165+
166+
# Android Patch
167+
168+
# External native build folder generated in Android Studio 2.2 and later
169+
170+
# NDK
171+
obj/
172+
173+
# IntelliJ IDEA
174+
*.iws
175+
/out/
176+
177+
# User-specific configurations
178+
.idea/caches/
179+
.idea/libraries/
180+
.idea/shelf/
181+
.idea/.name
182+
.idea/compiler.xml
183+
.idea/copyright/profiles_settings.xml
184+
.idea/encodings.xml
185+
.idea/misc.xml
186+
.idea/scopes/scope_settings.xml
187+
.idea/vcs.xml
188+
.idea/jsLibraryMappings.xml
189+
.idea/datasources.xml
190+
.idea/dataSources.ids
191+
.idea/sqlDataSources.xml
192+
.idea/dynamic.xml
193+
.idea/uiDesigner.xml
194+
195+
# OS-specific files
196+
.DS_Store
197+
.DS_Store?
198+
._*
199+
.Spotlight-V100
200+
.Trashes
201+
ehthumbs.db
202+
Thumbs.db
203+
204+
# Legacy Eclipse project files
205+
.classpath
206+
.project
207+
.cproject
208+
.settings/
209+
210+
# Mobile Tools for Java (J2ME)
211+
212+
# Package Files #
213+
214+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
215+
216+
## Plugin-specific files:
217+
218+
# mpeltonen/sbt-idea plugin
219+
.idea_modules/
220+
221+
# JIRA plugin
222+
atlassian-ide-plugin.xml
223+
224+
# Mongo Explorer plugin
225+
.idea/mongoSettings.xml
226+
227+
# Crashlytics plugin (for Android Studio and IntelliJ)
228+
com_crashlytics_export_strings.xml
229+
crashlytics.properties
230+
crashlytics-build.properties
231+
fabric.properties
232+
233+
### AndroidStudio Patch ###
234+
235+
!/gradle/wrapper/gradle-wrapper.jar
236+
237+
# End of https://www.toptal.com/developers/gitignore/api/kotlin,android,androidstudio

.idea/.gitignore

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

SeeMeet/.idea/misc.xml

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)