RetroMusicPlayer/build.gradle

22 lines
516 B
Groovy
Raw Normal View History

2018-07-27 18:37:33 +05:30
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2021-12-18 11:58:25 +05:30
2018-07-27 18:37:33 +05:30
repositories {
mavenCentral()
2018-07-27 18:37:33 +05:30
google()
}
dependencies {
classpath libs.gradle
classpath libs.kotlin.gradle.plugin
classpath libs.androidx.navigation.safeargs.plugin
2018-07-27 18:37:33 +05:30
}
}
2022-05-17 10:54:39 +05:30
plugins {
alias libs.plugins.github.ben.manes
alias libs.plugins.google.devtools.ksp apply false
2022-05-17 10:54:39 +05:30
}
tasks.register('clean', Delete) {
2018-07-27 18:37:33 +05:30
delete rootProject.buildDir
}