-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
44 lines (31 loc) · 874 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
plugins{
id 'com.android.application' version '7.4.0' apply false
id 'com.android.library' version '7.4.0' apply false
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
id 'io.github.gradle-nexus.publish-plugin' version '1.1.0'
}
ext {
kotlin_version = '1.7.21'
//ktlint
ktlintVersion = '0.46.1'
// Coroutine
coroutineVersion = '1.5.2'
coroutineTestVersion = '1.5.2'
// OkHTTP
okHttpVersion = '4.9.2'
// Moshi
moshiVersion = '1.12.0'
moshiAdaptersVersion = '1.12.0'
moshiKotlinVersion = '1.12.0'
// Mockk
mockkVersion = '1.12.0'
// Junit
junitVersion = '4.13.2'
//Navigation graph
navGraph = '2.4.1'
//lifecycle
lifecycleVersion = '2.5.0-alpha03'
// Robolectric
robolectricVersion = '4.7.2'
}
apply from: "${rootDir}/scripts/publish-root.gradle"