-
Notifications
You must be signed in to change notification settings - Fork 207
/
Copy pathbuild.gradle
33 lines (32 loc) · 915 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
ext.kotlin_version = "1.3.21"
ext.agpVersion = "3.3.0"
dependencies {
classpath "com.android.tools.build:gradle:$agpVersion"
classpath "com.github.dcendents:android-maven-gradle-plugin:2.0"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4"
classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2"
classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.5"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
ext {
supportLibVersion = "28.0.0"
supportTestVersion = "0.5"
espressoVersion = "2.2.2"
junitVersion = "4.12"
mockitoVersion = "1.10.19"
bugsnagPluginVersion = "3.3.0"
}