forked from Android-Academy-Global/AndroidAcademyClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
26 lines (24 loc) · 807 Bytes
/
build.gradle.kts
File metadata and controls
26 lines (24 loc) · 807 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
26
buildscript {
val navigationVersion by extra("2.3.4")
repositories {
google()
mavenCentral()
maven(url = "https://maven.pkg.jetbrains.space/public/p/compose/dev/")
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
classpath("org.jetbrains.kotlin:kotlin-serialization:${Versions.kotlin}")
classpath("com.android.tools.build:gradle:${Versions.androidToolsPlugin}")
classpath ("com.google.dagger:hilt-android-gradle-plugin:${Versions.daggerVersion}")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:${navigationVersion}")
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task<Delete>("clean") {
delete(rootProject.buildDir)
}