Hello, have you ever used google ml kit pods in th...
# multiplatform
d
Hello, have you ever used google ml kit pods in the KMP project. I was able to import pods using cocoapods but have an issue during the ios project building. pods configuration
Copy code
cocoapods {
        name = "shared"
        summary = "summary"
        authors = "authors"
        homepage = "Mh home"
        license = "my license"
        ios.deploymentTarget = libs.versions.iOsDeploymentTarget.get()
        framework {
            baseName = "shared"
            linkerOpts("-lsqlite3")
            export(project(":core"))
        }
        pod("GoogleMLKit/BarcodeScanning") {
            moduleName = "MLKitBarcodeScanning"
            version = "6.0.0"
        }
        pod("GoogleMLKit/Vision") {
            moduleName = "MLKitVision"
            version = "6.0.0"
        }
        podfile = project.file("../ios/Podfile")
    }