-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (34 loc) · 1.06 KB
/
build.gradle
File metadata and controls
36 lines (34 loc) · 1.06 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
dependencies {
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.4'
}
}
plugins {
id 'com.android.application' version '7.2.1' apply false
id 'com.android.library' version '7.2.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' version '2.0.1' apply false
}
ext {
materialVersion = '1.6.1'
androidXCoreVersion = '1.8.0'
appCompatVersion = '1.4.2'
constraintLayoutVersion = '2.1.4'
navigationVersion = '2.4.2'
dataStoreVersion = '1.0.0'
lifecycleVersion = '2.4.1'
gsonVersion = '2.8.9'
glideVersion = '4.12.0'
timberVersion = '4.7.1'
retrofitVersion = '2.9.0'
okhttpVersion = '4.9.3'
coroutineVersion = '1.6.4'
koinVersion = '3.1.5'
googleMapsVersion = '18.1.0'
ossVersion = '17.0.0'
spinKitVersion = '1.4.0'
}
task clean(type: Delete) {
delete rootProject.buildDir
}