forked from openedx/openedx-app-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (42 loc) · 1.24 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
buildscript {
ext {
kotlin_version = '1.8.21'
coroutines_version = '1.7.1'
compose_version = '1.5.0'
compose_compiler_version = '1.4.7'
}
}
plugins {
id 'com.android.application' version '8.1.0' apply false
id 'com.android.library' version '8.1.0' apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
id 'com.google.gms.google-services' version '4.3.15' apply false
id "com.google.firebase.crashlytics" version "2.9.6" apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
core_version = "1.10.1"
appcompat_version = "1.6.1"
material_version = "1.9.0"
lifecycle_version = "2.6.1"
fragment_version = "1.6.1"
constraintlayout_version = "2.1.4"
viewpager2_version = "1.0.0"
media3 = "1.1.1"
youtubeplayer_version = "11.1.0"
firebase_version = "32.1.0"
retrofit_version = '2.9.0'
logginginterceptor_version = '4.9.1'
koin_version = '3.2.0'
coil_version = '2.3.0'
jsoup_version = '1.13.1'
room_version = '2.5.2'
work_version = '2.8.1'
window_version = '1.1.0'
//testing
mockk_version = '1.13.3'
android_arch_version = '2.2.0'
junit_version = '4.13.2'
}