mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-15 12:17:02 +05:30
fix(android): workaround packaging regression
This commit is contained in:
parent
1e396bc7ff
commit
4961af8a20
1 changed files with 4 additions and 2 deletions
|
@ -24,12 +24,14 @@ plugins {
|
||||||
|
|
||||||
android {
|
android {
|
||||||
namespace = "dev.msfjarvis.claw.android"
|
namespace = "dev.msfjarvis.claw.android"
|
||||||
defaultConfig { applicationId = "dev.msfjarvis.claw.android" }
|
defaultConfig.applicationId = "dev.msfjarvis.claw.android"
|
||||||
buildFeatures { compose = true }
|
buildFeatures.compose = true
|
||||||
composeOptions {
|
composeOptions {
|
||||||
useLiveLiterals = false
|
useLiveLiterals = false
|
||||||
kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
|
kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
|
||||||
}
|
}
|
||||||
|
// kotlinx.serialization 1.6.0-RC regression
|
||||||
|
packagingOptions.resources.pickFirsts += "**/*.bin"
|
||||||
}
|
}
|
||||||
|
|
||||||
baselineProfile {
|
baselineProfile {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue