2016-06-01 19:26:46 +03:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
2019-10-08 01:27:32 +03:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
google()
|
|
|
|
}
|
2016-06-01 19:26:46 +03:00
|
|
|
|
2021-03-19 04:32:10 +03:00
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:3.2.0'
|
2019-10-08 01:27:32 +03:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
|
|
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
|
2021-03-19 04:24:54 +03:00
|
|
|
classpath 'org.jacoco:org.jacoco.core:0.8.1'
|
2019-10-08 01:27:32 +03:00
|
|
|
}
|
2016-06-01 19:26:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
2019-10-08 01:27:32 +03:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
2016-06-01 19:26:46 +03:00
|
|
|
}
|