RetroMusicPlayer/build.gradle

25 lines
720 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-15 13:37:25 +05:30
ext.kotlin_version = '1.6.10'
2021-12-18 11:58:25 +05:30
ext.navigation_version = '2.4.0-rc01'
ext.mdc_version = '1.5.0-rc01'
ext.preference_version = '1.2.0-rc01'
2018-07-27 18:37:33 +05:30
repositories {
mavenCentral()
2018-07-27 18:37:33 +05:30
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
2018-12-13 02:57:37 +05:30
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2021-12-18 11:58:25 +05:30
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
2018-07-27 18:37:33 +05:30
}
}
2021-12-16 10:53:18 +05:30
plugins {
id "com.github.ben-manes.versions" version "0.39.0"
}
task clean(type: Delete) {
2018-07-27 18:37:33 +05:30
delete rootProject.buildDir
}