https://kotlinlang.org logo
#compose-ios
Title
# compose-ios
j

Joel Denke

11/20/2023, 8:56 AM
Getting strange issue with: dyld[77079]: Library not loaded: @rpath/FirebaseAuth.framework/FirebaseAuth When I shifted from cocoapods into Swift Package Manager. Having this in my shared module.
Copy code
listOf(
    iosX64(),
    iosArm64(),
    iosSimulatorArm64()
).forEach {
    it.binaries.framework {
        isStatic = true
        baseName = "shared"
    }
}
Also I have added the FirebaseAuth in Swift Package Manager as far as I understood it in XCode. Anyone experience same?
6 Views