2017-03-09 14:29:23 -06:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-09-10 08:32:45 -05:00
|
|
|
mavenCentral()
|
2017-09-18 11:15:33 -05:00
|
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
|
|
maven { url 'https://maven.google.com' }
|
2017-03-09 14:29:23 -06:00
|
|
|
}
|
|
|
|
dependencies {
|
2017-10-27 10:05:00 -05:00
|
|
|
classpath 'com.android.tools.build:gradle:3.0.0'
|
2017-09-17 11:04:28 -05:00
|
|
|
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2'
|
2017-03-09 14:29:23 -06:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
2017-07-20 10:37:55 -05:00
|
|
|
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
|
|
|
|
classpath "gradle.plugin.io.github.ddimtirov:codacy-gradle-plugin:0.1.0"
|
2017-03-09 14:29:23 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-23 15:17:13 -05:00
|
|
|
project.ext.preDexLibs = !project.hasProperty("disablePreDex")
|
|
|
|
subprojects {
|
|
|
|
project.plugins.whenPluginAdded { plugin ->
|
|
|
|
if ("com.android.build.gradle.AppPlugin" == plugin.class.name) {
|
|
|
|
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
|
|
|
|
} else if ("com.android.build.gradle.LibraryPlugin" == plugin.class.name) {
|
|
|
|
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-09 14:29:23 -06:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-09-10 08:32:45 -05:00
|
|
|
mavenCentral()
|
2017-09-18 11:15:33 -05:00
|
|
|
maven { url 'https://maven.google.com' }
|
2017-03-09 14:29:23 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|