forked from ThibaultBee/StreamPack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common_library.gradle
45 lines (38 loc) · 1.06 KB
/
common_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
43
44
45
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'org.jetbrains.dokka'
android {
defaultConfig {
minSdk project.minSdk
targetSdk project.targetSdk
compileSdk project.compileSdk
consumerProguardFiles 'proguard-rules.txt'
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
testOptions.unitTests {
returnDefaultValues = true
includeAndroidResources = true
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dokkaHtmlPartial {
dokkaSourceSets {
named("main") {
noAndroidSdkLink.set(false)
skipDeprecated.set(true)
includeNonPublic.set(false)
skipEmptyPackages.set(true)
// Remove internal package
perPackageOption {
matchingRegex.set(".*\\.internal.*")
suppress.set(true)
}
}
}
}