-
Notifications
You must be signed in to change notification settings - Fork 46
/
build.gradle
45 lines (43 loc) · 991 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
buildscript {
ext.versions = [
'androidx': [
'ktx': [
'core': '1.8.0',
'lifecycle': '2.5.0'
],
'compose': [
'core': '1.1.1',
'activity': '1.5.0'
],
'appCompat': '1.4.2',
],
'kotlin': [
'stdlib': '1.6.10',
'coroutines': [
'core': '1.3.7',
'android': '1.6.1'
],
],
'okhttp': '4.3.1',
'retrofit': '2.7.1',
'ktlint': '0.35',
'coil': '2.1.0'
]
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin.stdlib}"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}