-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
28 lines (27 loc) · 1.02 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
ext {
hiltVersion = "2.47"
coilVersion = "2.2.2"
viewModelVersion = "2.6.2"
navVersion = "2.7.6"
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
classpath "com.google.android.gms:oss-licenses-plugin:0.10.4"
}
}
plugins {
id 'com.android.application' version '8.1.3' apply false
id 'com.android.library' version '8.1.3' apply false
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
id 'org.jlleitschuh.gradle.ktlint' version '11.0.0' apply false
id 'androidx.navigation.safeargs.kotlin' version '2.7.6' apply false
id 'com.google.gms.google-services' version '4.4.0' apply false
id 'com.google.firebase.crashlytics' version '2.9.9' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '1.8.0' apply false
}