-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
Copy pathbuild.gradle
39 lines (35 loc) · 1007 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.agpVersion = "8.1.1"
repositories {
// Insert local test repo here
google()
mavenCentral()
mavenLocal()
}
dependencies {
classpath "com.android.tools.build:gradle:$agpVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
// Insert local test repo here
google()
mavenCentral()
mavenLocal()
}
}
ext {
androidxAnnotationVersion = "1.5.0"
guavaVersion = "31.1-android"
coreVersion = "1.6.0-alpha02"
extJUnitVersion = "1.2.0-alpha01"
runnerVersion = "1.6.0-alpha03"
monitorVersion = "1.7.0-alpha02"
rulesVersion = "1.6.0-alpha01"
espressoVersion = "3.6.0-alpha01"
orchestratorVersion = "1.5.0-alpha01"
truthVersion = "1.1.3"
}