forked from thunderbird/thunderbird-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththunderbird.app.android.compose.gradle.kts
More file actions
46 lines (38 loc) · 1.26 KB
/
Copy paththunderbird.app.android.compose.gradle.kts
File metadata and controls
46 lines (38 loc) · 1.26 KB
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
46
plugins {
id("thunderbird.app.android")
id("org.jetbrains.kotlin.plugin.compose")
id("net.thunderbird.gradle.plugin.quality.coverage")
id("net.thunderbird.gradle.plugin.quality.detekt")
id("net.thunderbird.gradle.plugin.quality.spotless")
}
android {
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro",
)
}
}
packaging {
jniLibs {
keepDebugSymbols += listOf(
"**/libandroidx.graphics.path.so",
"**/libdatastore_shared_counter.so",
"**/libimage_processing_util_jni.so",
"**/libsurface_util_jni.so",
)
}
}
}
dependencies {
val composeBom = platform(libs.androidx.compose.bom)
implementation(composeBom)
androidTestImplementation(composeBom)
implementation(libs.bundles.shared.jvm.android.compose)
debugImplementation(libs.bundles.shared.jvm.android.compose.debug)
testImplementation(libs.bundles.shared.jvm.test.compose)
androidTestImplementation(libs.bundles.shared.jvm.androidtest.compose)
implementation(libs.androidx.activity.compose)
}