RetroMusicPlayer/build.gradle

32 lines
703 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 {
2018-12-25 20:28:47 +05:30
ext.kotlin_version = '1.3.11'
2018-09-10 01:14:46 +05:30
ext {
2018-11-13 09:00:08 +05:30
supportLibVersion = '1.0.0'
2018-09-10 01:14:46 +05:30
firebase = "11.8.0"
retrofit = "2.3.0"
materialDialog = "0.9.6.0"
}
2018-07-27 18:37:33 +05:30
repositories {
jcenter()
google()
}
dependencies {
2018-12-25 20:28:47 +05:30
classpath 'com.android.tools.build:gradle:3.4.0-alpha08'
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
}