-
Notifications
You must be signed in to change notification settings - Fork 7
/
dependencies.gradle
46 lines (39 loc) · 1.61 KB
/
dependencies.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
45
46
ext {
versions = [
// Build tools and SDK
buildTools : '29.0.3',
compileSdk : 29,
gradlePlugin : '3.6.1',
jetpack : '1.1.0',
minSdk : 19,
targetSdk : 29,
// Android libraries
appcompat : '24.2.1',
material : '1.1.0',
multidex : '2.0.1',
// Third-party libraries
fhir : '3.8.0',
gson : '2.4',
okHttp : '3.4.2',
// Instrumented testing libraries
// Testing libraries
junit : '4.12',
roboeletric : '3.1.4'
]
libraries = [
appcompat : "androidx.appcompat:appcompat:${versions.jetpack}",
design : "com.android.support:design:${versions.appcompat}",
fhirAndroid : "ca.uhn.hapi.fhir:hapi-fhir-android:${versions.fhir}",
fhirStructures : "ca.uhn.hapi.fhir:hapi-fhir-structures-dstu2:${versions.fhir}",
gson : "com.google.code.gson:gson:${versions.gson}",
material : "com.google.android.material:material:${versions.material}",
multidex : "androidx.multidex:multidex:${versions.multidex}",
okHttp : "com.squareup.okhttp3:okhttp:${versions.okHttp}",
]
instrumentedTestLibraries = [
]
testLibraries = [
junit : "junit:junit:${versions.junit}",
roboeletric: "org.robolectric:robolectric:${versions.roboeletric}"
]
}