-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
59 lines (51 loc) · 1.7 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
//kotlin
ext.kotlin_version = '1.6.10'
ext.kotlin_core_version = "1.7.0"
ext.kotlinx_coroutine_version = "1.4.3"
//androidx/ jetpack component
ext.constraintlayout_version = "2.1.3"
ext.nav_version = "2.3.3"
ext.material_version = "1.5.0"
ext.appcompat_version = "1.4.1"
ext.fragment_version = "1.3.0"
ext.room_version = "2.2.6"
ext.compose_version = '1.1.0'
//network components
ext.gson_version = "2.8.6"
ext.retrofit_version = "2.9.0"
ext.glide_version = '4.12.0'
ext.koin_version = "3.1.4"
ext.okhttp3_logging_version = "3.14.9"
//test
ext.junit_version = "4.13.2"
ext.androidx_junit = "1.1.3"
ext.androidx_espresso_core = "3.4.0"
//documentation
ext.dokka_version = '0.9.18'
// ext.dokka_version = '1.4.30'
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:$dokka_version"
// classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.4.30"
// classpath("org.jetbrains.dokka:dokka-gradle-plugin:${dokka_version}")
// classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}