blob: 64b423e1e12b0113e53059e0ad49d7ac12e7a085 (
plain)
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
|
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
}
android {
configureSharedConfig()
defaultConfig {
targetSdk = ThunderbirdProjectConfig.androidSdkTarget
}
buildFeatures {
buildConfig = true
}
compileOptions {
isCoreLibraryDesugaringEnabled = true
}
kotlinOptions {
jvmTarget = ThunderbirdProjectConfig.javaVersion.toString()
}
lint {
lintConfig = file("${rootProject.projectDir}/config/lint/lint.xml")
}
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
}
dependencies {
coreLibraryDesugaring(libs.desugar)
testImplementation(libs.bundles.shared.jvm.test)
}
|