-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
20 lines (19 loc) · 807 Bytes
/
build.gradle.kts
File metadata and controls
20 lines (19 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.jetbrains.kotlin.android) apply false
id("com.google.dagger.hilt.android") version "2.51.1" apply false
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath ("com.android.tools.build:gradle:7.4.2")
classpath ("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7")
classpath ("com.google.dagger:hilt-android-gradle-plugin:2.51.1")
classpath ("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10")
// NOTE: Do not place your application dependencies here they belong
// in the individual module build.gradle files
}
}