-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathbuild.gradle
44 lines (41 loc) · 1006 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
42
43
44
buildscript {
repositories {
google()
maven {
url "https://plugins.gradle.org/m2/"
}
maven {
url "https://jitpack.io"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.0-alpha07'
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.18.0'
}
}
allprojects {
repositories {
google()
maven {
url "https://plugins.gradle.org/m2/"
}
maven {
url "https://jitpack.io"
}
}
}
ext {
minSdkVersion = 14
targetSdkVersion = 30
compileSdkVersion = 31
sourceCompatibilityVersion = JavaVersion.VERSION_11
targetCompatibilityVersion = JavaVersion.VERSION_11
}
ext.deps = [
// Test dependencies
androidXCore : 'androidx.core:core:1.9.0-alpha01',
junit : 'junit:junit:4.13.2',
robolectric : 'org.robolectric:robolectric:4.7.3',
intellijannotations: 'org.jetbrains:annotations:16.0.2',
truth : 'com.google.truth:truth:1.0'
]