forked from matomo-org/matomo-sdk-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (32 loc) · 842 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()
maven {
url "https://plugins.gradle.org/m2/"
}
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath "com.vanniktech:gradle-android-junit-jacoco-plugin:0.13.0"
}
}
allprojects {
repositories {
google()
maven {
url "https://plugins.gradle.org/m2/"
}
jcenter()
}
ext {
globalMinSdkVersion = 14
globalTargetSdkVersion = 28
globalCompileSdkVersion = 28
globalBuildToolsVersion = '28.0.3'
supportLibVersion = '28.0.0'
timberVersion = '4.7.1'
}
}