brabo-hi
08/24/2023, 3:15 AMsqldelght
and compose-ios
multiplatform on the same shared module with cocoapods. It looks like sqldelight needs isStatic = false
and compose
needs isStatic = true
. When using both, i am getting the following error
expression.kt
File name: App.kt Physical: true Injected: false
fun MainViewController() = ComposeUIViewController { <caret>Text("") }
Stefan Oltmann
08/24/2023, 5:49 AMOther linker flags
to -lsqlite3
in XCode to make it work.brabo-hi
08/24/2023, 5:52 AMStefan Oltmann
08/24/2023, 5:54 AMbrabo-hi
08/24/2023, 6:40 AMbrabo-hi
08/24/2023, 6:58 AMexpression.kt
File name: App.kt Physical: true Injected: false
fun MainViewController() = ComposeUIViewController { <caret>App() }
Stefan Oltmann
08/24/2023, 6:58 AMbrabo-hi
08/24/2023, 7:04 AMKonstantin Tskhovrebov
08/24/2023, 9:37 AMbrabo-hi
08/24/2023, 3:44 PMfun MainViewController(): UIViewController = _ComposeUIViewController_ *{* _App_() *}*
on the iosApp shared modulebrabo-hi
08/24/2023, 3:45 PMMagnus Lundberg
08/24/2023, 6:22 PMDima Avdeev
08/28/2023, 4:27 PM