-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
36 lines (31 loc) · 1002 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
34
35
36
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.71'
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.2'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath('com.stanfy.spoon:spoon-gradle-plugin:1.0.3') {
// Workaround for https://github.com/stanfy/spoon-gradle-plugin/issues/33
exclude module: 'guava'
}
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
// Exclude the lombok version that the android plugin depends on.
configurations.classpath.exclude group: 'com.android.tools.external.lombok'
}
ext {
espressoVersion = '2.2.1'
supportLibVersion = '26.0.0'
okhttpVersion = '2.7.4'
}
task clean(type: Delete) {
delete rootProject.buildDir
}
repositories {
google()
}