-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (46 loc) · 1.26 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
ktx = '1.10.1'
coil = '2.4.0'
room = '2.5.1'
work = '2.8.1'
libsu = '5.1.0'
junit = '4.13.2'
zip4j = '2.11.5'
kotlin = '1.8.21'
shimmer = '0.5.0'
activity = '1.7.2'
espresso = '3.5.1'
fragment = '1.5.7'
material = '1.9.0'
appCompat = '1.6.1'
integrity = '1.1.0'
lifecycle = '2.6.1'
constraint = '2.1.4'
coroutines = '1.7.1'
ksp = '1.8.21-1.0.11'
leakCanary = '2.9.1'
navigation = '2.5.3'
googleAuth = '20.5.0'
googleGson = '1.43.2'
swipeRefresh = '1.1.0'
androidxJunit = '1.1.5'
gradleVersion = '8.0.2'
googleApiClient = '2.2.0'
kotlinSerialization = '1.5.1'
googleDriveApi = 'v3-rev20221219-2.0.0'
}
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}