-
Notifications
You must be signed in to change notification settings - Fork 331
/
Copy pathcommon-android-library.gradle
45 lines (36 loc) · 1.04 KB
/
common-android-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'
android {
compileSdkVersion 32
defaultConfig {
minSdkVersion 24
targetSdkVersion 32
versionCode 1
versionName "1.0"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
buildFeatures {
viewBinding = true
}
buildTypes {
buildType.javaCompileOptions.annotationProcessorOptions.arguments =
[
logEpoxyTimings : "false",
enableParallelEpoxyProcessing: "true",
validateEpoxyModelUsage : String.valueOf(buildType.name == 'debug')
]
release {
minifyEnabled true
proguardFiles getDefaultProguardFile("proguard-android.txt"), "$rootDir/app/proguard-rules.pro"
}
}
}
dependencies {
implementation libs.kotlinStdlibJdk8
}