melonDS-android/build.gradle.kts
2022-01-12 21:32:43 +00:00

32 lines
720 B
Plaintext

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
}
dependencies {
with(Dependencies.GradlePlugins) {
classpath(gradle)
classpath(hiltAndroid)
classpath(kotlin)
}
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}