-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathlibrary.gradle
42 lines (36 loc) · 1.04 KB
/
library.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
android {
compileSdkVersion compileVersion
defaultConfig {
minSdkVersion obtainMinSdkVersion()
targetSdkVersion compileVersion
versionCode 1
versionName "8.12.0-SNAPSHOT"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
testOptions {
unitTests.includeAndroidResources = true
unitTests.all {
maxHeapSize = "1024m"
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
project.afterEvaluate {
// Remove afterEvaluate
// after https://github.com/Kotlin/kotlinx-kover/issues/362 is fixed
project.pluginManager.apply("org.jetbrains.kotlinx.kover")
}
def obtainMinSdkVersion() {
def result = minVersion
if (project.hasProperty("minSdkVersion")) {
result = project.getProperties().get("minSdkVersion").toInteger()
}
result
}