-
Notifications
You must be signed in to change notification settings - Fork 133
/
build.gradle
41 lines (38 loc) · 870 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
37
38
39
40
41
buildscript {
repositories {
mavenCentral()
google()
jcenter {
// Required for a dependency of Android lint.
content {
includeGroup 'org.jetbrains.trove4j'
}
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
}
}
allprojects {
repositories {
mavenCentral()
google()
jcenter {
// Required for a dependency of Android lint.
content {
includeGroup 'org.jetbrains.trove4j'
}
}
}
}
ext {
minSdkVersion = 15
compileSdkVersion = 29
junit = 'junit:junit:4.13'
truth = 'com.google.truth:truth:1.0.1'
testOrchestrator = 'androidx.test:orchestrator:1.1.1'
testRunner = 'androidx.test:runner:1.1.1'
testRules = 'androidx.test:rules:1.1.1'
robolectric = 'org.robolectric:robolectric:3.7.1'
threetenbp = 'org.threeten:threetenbp:1.6.9:no-tzdb'
}