-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathbuild.gradle
42 lines (34 loc) · 1.05 KB
/
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
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
compileSdkVersion androidVersions.compileSdkVersion
defaultConfig {
minSdkVersion androidVersions.minSdkVersion
targetSdkVersion androidVersions.targetSdkVersion
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
configurations {
javadocDeps
}
lintOptions {
abortOnError false
}
testOptions {
unitTests.returnDefaultValues true
}
tasks.withType(Javadoc).all {
enabled = false
}
}
dependencies {
implementation dependenciesList.kotlin
implementation dependenciesList.mapboxMapSdk
javadocDeps dependenciesList.mapboxMapSdk
testImplementation dependenciesList.junit
testImplementation dependenciesList.mockito
testImplementation dependenciesList.robolectric
testImplementation dependenciesList.kotlin
}
apply from: "${rootDir}/gradle/javadoc.gradle"
apply from: "${rootDir}/gradle/publish.gradle"
apply from: "${rootDir}/gradle/checkstyle.gradle"