-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
27 lines (23 loc) · 884 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
// added this buildscript for safe args
buildscript {
ext {
kotlin_version = '1.9.22'
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
def nav_version = "2.6.0"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
}
repositories {
mavenCentral()
}
}
plugins {
id 'com.android.application' version '8.2.1' apply false
id 'com.android.library' version '8.2.1' apply false
id 'org.jetbrains.kotlin.android' version '1.9.22' apply false
id 'com.google.gms.google-services' version '4.3.15' apply false
id 'com.google.dagger.hilt.android' version '2.48' apply false
id 'com.google.devtools.ksp' version '1.9.22-1.0.17' apply false
}