RetroMusicPlayer/build.gradle

32 lines
697 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-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"
2018-11-23 22:03:04 +05:30
butterKnife = "9.0.0-rc1"
2018-09-10 01:14:46 +05:30
materialDialog = "0.9.6.0"
}
2018-07-27 18:37:33 +05:30
repositories {
jcenter()
google()
}
dependencies {
2018-11-13 09:00:08 +05:30
classpath 'com.android.tools.build:gradle:3.2.1'
2018-07-27 18:37:33 +05:30
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
2018-08-22 23:24:07 +05:30
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
2018-07-27 18:37:33 +05:30
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}