mirror of
https://github.com/rafaelvcaetano/melonDS-android.git
synced 2025-02-18 12:48:59 +00:00
32 lines
720 B
Plaintext
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)
|
|
}
|