RetroMusicPlayer/build.gradle

24 lines
696 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 {
2022-01-04 14:26:22 +05:30
ext {
kotlin_version = '1.6.10'
2022-01-27 13:19:39 +05:30
navigation_version = '2.5.0-alpha01'
2022-01-16 17:57:31 +05:30
mdc_version = '1.5.0'
2022-01-27 13:19:39 +05:30
preference_version = '1.2.0'
2022-01-13 17:45:41 +05:30
appcompat_version = '1.4.1'
2022-01-04 14:26:22 +05:30
}
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 'com.android.tools.build:gradle:7.1.1'
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
}
}
task clean(type: Delete) {
2018-07-27 18:37:33 +05:30
delete rootProject.buildDir
}