Simonas Brazauskas
07/09/2021, 9:16 AM.dSYMtargets.withType<org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget> {
        binaries.all {
            freeCompilerArgs += "-Xadd-light-debug=enable"
        }
    }lsqlcipherlsqlite3lsqlcipherlsqlciphercocoapods {
        this.ios.deploymentTarget = "13.0"
        // Configure fields required by CocoaPods.
        summary = "Secoris core"
        homepage = "<https://github.com/JetBrains/kotlin>"
        // You can change the name of the produced framework.
        // By default, it is the name of the Gradle project.
        frameworkName = binaryBaseName
        pod("SQLCipher", "~> 4.4")
    }targets
       .flatMap { it.compilations }
        .filterIsInstance<org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeCompilation>()
        .forEach { compilationUnit ->
            compilationUnit.kotlinOptions.freeCompilerArgs += arrayOf("-linker-options", "-lsqlcipher")
       }ld: library not found for -lsqlcipher.dSYM.dSYMlsqlite3matej
07/12/2021, 5:57 AMmatej
07/13/2021, 8:00 AMSimonas Brazauskas
07/13/2021, 9:52 AMtargets.withType<org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget> {
    binaries.withType<org.jetbrains.kotlin.gradle.plugin.mpp.Framework> {
        isStatic = true
    }
}matej
07/14/2021, 11:13 AMsyntax error in "PRAGMA key = ?;"Simonas Brazauskas
07/14/2021, 1:42 PMimplementation("co.touchlab:sqliter-driver:1.0.3") {
                    version {
                        strictly("1.0.3")
                    }
                }Simonas Brazauskas
07/14/2021, 1:43 PMcom.squareup.sqldelight:native-driver:1.5.0matej
07/14/2021, 5:59 PMmatej
07/14/2021, 7:50 PMco.touchlab:sqliter-driver:1.0.3matej
07/14/2021, 7:50 PMmatej
07/14/2021, 7:55 PMmatej
07/14/2021, 8:00 PM-framework "SQLCipher"$(inherited)-framework "SQLCipher"matej
07/14/2021, 8:03 PMmatej
07/14/2021, 8:14 PM-framework "SQLCipher"-framework"SQLCipher"Simonas Brazauskas
07/20/2021, 5:53 PM