RetroMusicPlayer/build.gradle

32 lines
701 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 {
2019-02-23 23:09:02 +05:30
ext.kotlin_version = '1.3.21'
2018-09-10 01:14:46 +05:30
ext {
2019-03-25 18:13:43 +05:30
supportLibVersion = '1.1.0-alpha05'
2018-09-10 01:14:46 +05:30
firebase = "11.8.0"
retrofit = "2.3.0"
2019-02-19 16:08:51 +05:30
materialDialog = "2.0.0"
2018-09-10 01:14:46 +05:30
}
2018-07-27 18:37:33 +05:30
repositories {
jcenter()
google()
}
dependencies {
2019-02-17 22:31:35 +05:30
classpath 'com.android.tools.build:gradle:3.3.1'
2018-12-13 02:57:37 +05:30
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2018-07-27 18:37:33 +05:30
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}