-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
56 lines (52 loc) · 1.75 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compileSdkVersion = 34
minSdkVersion = 26
targetSdkVersion = 34
appCompatVersion = '1.4.0'
appStartupVersion = '1.0.0'
constraintLayoutVersion = '2.1.2'
dataStoreVersion = '1.0.0'
espressoVersion = '3.4.0'
gsonVersion = '2.8.2'
glideVersion = '4.10.0'
gradleVersion = '8.1.0'
hiltVersion = '2.44'
junitVersion = '4.13.2'
lombokVersion = '1.18.22'
lifecycleVersion = '2.2.0'
materialVersion = '1.4.0'
mockitoVersion = '1.10.19'
navigationVersion = '2.5.0'
pagingVersion = '3.1.0'
protobufVersion = '0.9.1'
protocVersion = '3.14.0'
protobufLiteVersion = '3.23.4'
rxAndroidVersion = '3.0.0'
rxJavaVersion = '3.0.0'
recyclerViewVersion = '1.2.1'
roomVersion = '2.5.2'
robolectricVersion = '4.4'
preferenceVersion = '1.1.1'
timberVersion = '4.7.1'
testExtJunitVersion = '1.1.3'
testCoreVersion = '2.1.0'
workVersion = '2.8.1'
kotlinVersion = "1.8.0"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
classpath "com.google.protobuf:protobuf-gradle-plugin:$protobufVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}