Skip to content

Commit 5522a07

Browse files
author
soohwan.ok
committed
초기 프로젝트 설정
0 parents  commit 5522a07

File tree

116 files changed

+2537
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+2537
-0
lines changed

.gitignore

+136
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/androidstudio
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=androidstudio
3+
4+
### AndroidStudio ###
5+
# Covers files to be ignored for android development using Android Studio.
6+
7+
# Built application files
8+
*.apk
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+
23+
# Gradle files
24+
.gradle
25+
.gradle/
26+
build/
27+
28+
# Signing files
29+
.signing/
30+
31+
# Local configuration file (sdk path, etc)
32+
local.properties
33+
34+
# Proguard folder generated by Eclipse
35+
proguard/
36+
37+
# Log Files
38+
*.log
39+
40+
# Android Studio
41+
/*/build/
42+
/*/local.properties
43+
/*/out
44+
/*/*/build
45+
/*/*/production
46+
captures/
47+
.navigation/
48+
*.ipr
49+
*~
50+
*.swp
51+
52+
# Keystore files
53+
*.jks
54+
*.keystore
55+
56+
# Google Services (e.g. APIs or Firebase)
57+
# google-services.json
58+
59+
# Android Patch
60+
gen-external-apklibs
61+
62+
# External native build folder generated in Android Studio 2.2 and later
63+
.externalNativeBuild
64+
65+
# NDK
66+
obj/
67+
68+
# IntelliJ IDEA
69+
*.iml
70+
*.iws
71+
/out/
72+
73+
# User-specific configurations
74+
.idea/caches/
75+
.idea/libraries/
76+
.idea/shelf/
77+
.idea/workspace.xml
78+
.idea/tasks.xml
79+
.idea/.name
80+
.idea/compiler.xml
81+
.idea/copyright/profiles_settings.xml
82+
.idea/encodings.xml
83+
.idea/misc.xml
84+
.idea/modules.xml
85+
.idea/scopes/scope_settings.xml
86+
.idea/dictionaries
87+
.idea/vcs.xml
88+
.idea/jsLibraryMappings.xml
89+
.idea/datasources.xml
90+
.idea/dataSources.ids
91+
.idea/sqlDataSources.xml
92+
.idea/dynamic.xml
93+
.idea/uiDesigner.xml
94+
.idea/assetWizardSettings.xml
95+
.idea/gradle.xml
96+
.idea/jarRepositories.xml
97+
.idea/navEditor.xml
98+
99+
# Legacy Eclipse project files
100+
.classpath
101+
.project
102+
.cproject
103+
.settings/
104+
105+
# Mobile Tools for Java (J2ME)
106+
.mtj.tmp/
107+
108+
# Package Files #
109+
*.war
110+
*.ear
111+
112+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
113+
hs_err_pid*
114+
115+
## Plugin-specific files:
116+
117+
# mpeltonen/sbt-idea plugin
118+
.idea_modules/
119+
120+
# JIRA plugin
121+
atlassian-ide-plugin.xml
122+
123+
# Mongo Explorer plugin
124+
.idea/mongoSettings.xml
125+
126+
# Crashlytics plugin (for Android Studio and IntelliJ)
127+
com_crashlytics_export_strings.xml
128+
crashlytics.properties
129+
crashlytics-build.properties
130+
fabric.properties
131+
132+
### AndroidStudio Patch ###
133+
134+
!/gradle/wrapper/gradle-wrapper.jar
135+
136+
# End of https://www.toptal.com/developers/gitignore/api/androidstudio

build.gradle.kts

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
allprojects {
2+
repositories {
3+
google()
4+
mavenCentral()
5+
maven("https://jitpack.io")
6+
}
7+
}
8+
9+
buildscript {
10+
repositories {
11+
google()
12+
mavenCentral()
13+
}
14+
15+
dependencies {
16+
classpath(Dependencies.Android.Tools.Build.GRADLE)
17+
classpath(Dependencies.Jetbrains.Kotlin.GRADLE_PLUGIN)
18+
}
19+
}

buildSrc/build.gradle.kts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
plugins {
2+
`kotlin-dsl`
3+
}
4+
5+
repositories {
6+
mavenCentral()
7+
}

0 commit comments

Comments
 (0)