-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (34 loc) · 993 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
apply plugin: 'com.android.library'
android {
compileSdkVersion 32
buildToolsVersion '31.0.0'
defaultConfig {
minSdkVersion 24
targetSdkVersion 32
}
buildTypes {
release {
minifyEnabled true
proguardFiles 'proguard-rules.pro'
}
preview {
minifyEnabled true
proguardFiles 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'com.usda.fmsc.geospatial'
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'joda-time:joda-time:2.10.10'
// Required -- JUnit 4 framework
testImplementation 'junit:junit:4.13.1'
// Optional -- Robolectric environment
testImplementation 'androidx.test:core:1.4.0'
// Optional -- Mockito framework
testImplementation 'org.mockito:mockito-core:1.10.19'
}