This repository was archived by the owner on Sep 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
60 lines (56 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
60
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.5.10'
ext.kotlin_version = '1.4.31'
ext.navigation_version = '2.1.0'
ext.android_plugin_version = '4.2.2'
ext.jacocoVersion = '0.8.4'
dependencies {
classpath "com.android.tools.build:gradle:$android_plugin_version"
classpath 'com.android.tools.build:gradle:4.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.7.1.1")
classpath "org.jacoco:org.jacoco.core:$jacocoVersion"
}
repositories {
google()
mavenCentral()
'http://jitpack.io'
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
roomVersion = '2.2.5'
archLifecycleVersion = '2.2.0'
lifecycleVersion = '2.4.1'
androidxArchVersion = '2.1.0'
coreTestingVersion = "2.1.0"
coroutines = '1.5.2'
materialVersion = '1.0.0'
moshiVersion = '1.12.0'
gsonVersion = '2.8.7'
okhttp3Version = '5.0.0-alpha.2'
navigationVersion = '2.3.5'
appCompatVersion = '1.3.0'
kotlinVersion = '1.3.50'
materialVersion = '1.2.1'
recyclerVersion = '1.1.0'
constraintLayoutVersion = '2.0.4'
ktxVersion = '1.3.2'
fragmentVersion = '1.3.5'
viewPagerVersion = '1.0.0'
supportDesign = '28.0.0'
glideVersion = '4.12.0'
cardviewVersion = '1.0.0'
mdVersion = '1.0.8'
}