-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
25 lines (21 loc) · 848 Bytes
/
build.gradle.kts
File metadata and controls
25 lines (21 loc) · 848 Bytes
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// Repositories to search for dependencies
repositories {
google()
mavenCentral()
}
// Dependencies for build script, such as the Kotlin plugin
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21")
classpath ("com.android.tools.build:gradle:8.2.2")
}
}
plugins {
id("com.android.application") version "8.2.0" apply false
id ("com.android.library") version "8.2.0" apply false
id("org.jetbrains.kotlin.android") version "1.9.0" apply false
id("org.jetbrains.kotlin.jvm") version "1.9.0" apply false
id("com.google.dagger.hilt.android") version "2.48" apply false
id ("androidx.navigation.safeargs") version "2.5.3" apply false
}