2017-08-17 21:38:05 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2017-11-14 00:18:40 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.0.0'
|
2017-09-10 23:13:32 +00:00
|
|
|
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
|
2017-08-17 21:38:05 +00:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-09-08 00:31:38 +00:00
|
|
|
maven {
|
|
|
|
// For Room Persistence Library
|
|
|
|
url "https://maven.google.com"
|
2017-09-17 00:41:10 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url 'http://www.idescout.com/maven/repo/'
|
2017-09-08 00:31:38 +00:00
|
|
|
}
|
2017-08-17 21:38:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|