-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (41 loc) · 1.36 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
/// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.google.gms:google-services:4.3.13'
classpath 'com.android.tools.build:gradle:7.1.3'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10'
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.5.1'
}
}
plugins {
id 'com.android.application' version '7.2.2' apply false
id 'com.android.library' version '7.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' version '2.0.0' apply false
}
ext{
koin_version = '3.2.0'
moshi_version = '1.9.2'
glide_version = '4.8.0'
navigation_version = '2.5.1'
retrofit_version = '2.7.2'
room_version = '2.4.3'
junitVersion = '4.12'
androidXTestCoreVersion = '1.2.0-beta01'
robolectricVersion = '4.4'
androidXTestExtKotlinRunnerVersion = '1.1.1'
archTestingVersion = '2.0.0'
hamcrestVersion = '1.3'
androidXTestRulesVersion = '1.2.0-beta01'
espressoVersion = '3.2.0'
truthVersion = '0.44'
mockitoVersion = '2.8.9'
coroutinesVersion = '1.2.1'
}
task clean(type: Delete) {
delete rootProject.buildDir
}