forked from kaaholst/android-squeezer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (30 loc) · 867 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
allprojects {
repositories {
google()
jcenter()
}
tasks.withType(Javadoc) {
// Disable lint, due to issues in the EventBus code comments.
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
}
}
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
}
}
ext {
compileSdkVersion = 28
minSdkVersion = 14
targetSdkVersion = 28
assert minSdkVersion <= targetSdkVersion : "minSdkVersion too big"
assert targetSdkVersion <= compileSdkVersion : "targetSdkVersion too big"
// All support libraries must use the same version. The major version must be
// the same as the compileSdkVersion
supportLibraryVersion = "${compileSdkVersion}.0.0"
}