Hi everyone :) Hope you are doing well! Originall...
# multiplatform
a
Hi everyone :) Hope you are doing well! Originally, I had a native Android project and I migrated it by converting it to a KMP project. Then I decided to create a new project using the Wizard in order to create views using Compose and share with iOS. I moved all the migrated logic to ComposeApp/commonMain in the new project, but it seems like I'm having issues with Sql Delight and Firestore Kotlin SDK dependencies within iOS. These issues didn't occur when I tried to migrate the code in the native project. Additionally, I'm not using cocoapods in either the past or the new project. I can run the project on Android, in iOS shows the following log. I will add the Logcat Screenshot Can anyone provide some guidance? Thanks in advance
p
That project gitlive/firebase I think requires cocoapods.
In regards to SQLDelight, make sure you apply the plugin in the root gradle project.
a
I double checked about SQL Delight dependencies and it’s the same comparing with my previous project :/ I am not sure how to fix it.
p
Did you pass the linker option to link sqlite3. You perhaps did it manually in Xcode
Copy code
binaries.framework {
            baseName = project.name

            compilations.all {
                kotlinOptions.freeCompilerArgs += arrayOf("-linker-options", "-lsqlite3")
            }
        }
👍 1
a
No, I will try with that
👍 1