-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
33 lines (31 loc) · 983 Bytes
/
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
buildscript {
ext {
lifecycle_version = "2.5.1"
coroutines_version = "1.6.3"
retrofit_version = "2.9.0"
hilt_version = "2.43.2"
activity_version = "1.5.0"
fragment_version = "1.5.0"
navigation_version = "2.5.2"
koin_version = "3.3.2"
}
dependencies {
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.42'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
classpath 'com.google.gms:google-services:4.3.15'
}
repositories {
google()
jcenter()
maven { url 'https://jitpack.io'}
}
}
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
id 'org.jetbrains.kotlin.jvm' version '1.7.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}