-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (30 loc) · 1 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
nav_version = "2.6.0"
room_version = '2.5.2'
lifecycle_version = '2.6.1'
core_ktx_version = '1.10.0'
material_version = '1.9.0'
koin_version ='3.4.2'
glide_version = '4.15.0'
gson_version = '2.10.1'
}
dependencies {
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath("com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1")
}
repositories {
google()
mavenCentral()
maven {
url "https://maven.google.com/"
}
}
}
plugins {
id 'com.android.application' version '8.0.0' apply false
id 'com.android.library' version '8.0.0' apply false
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
id("com.google.devtools.ksp") version "1.8.22-1.0.11" apply false
}