mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-17 15:45:21 +01:00
22 lines
No EOL
516 B
Groovy
22 lines
No EOL
516 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath libs.gradle
|
|
classpath libs.kotlin.gradle.plugin
|
|
classpath libs.androidx.navigation.safeargs.plugin
|
|
}
|
|
}
|
|
plugins {
|
|
alias libs.plugins.github.ben.manes
|
|
alias libs.plugins.google.devtools.ksp apply false
|
|
}
|
|
|
|
tasks.register('clean', Delete) {
|
|
delete rootProject.buildDir
|
|
} |