-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (41 loc) · 1.41 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.4.31'
kotlin_coroutine_version = '1.4.2'
startup_version = '1.0.0'
room_version = '2.2.6'
timber_version = '4.7.1'
compose_version = '1.0.0-beta02'
constraintlayout_compose_version = '1.0.0-alpha03'
navigation_version = '1.0.0-alpha05'
accompanist_coil_version = '0.6.2'
koin_version = '2.2.2'
timber_version = '4.7.1'
koin_version = '2.2.2'
lifecycle_version = '2.3.0-rc01'
grpc_version = "1.32.1"
grpc_kotlin_version= "1.0.0"
protobuf_version = "3.13.0"
datastore_version = '1.0.0-alpha02'
junit_android_version = '1.1.2'
junit_version = '4.13'
minSdkVersion = 21
targetSdkVersion = 30
isDebuggable = false
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.0-alpha08"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.13"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}