vashisthg
10/22/2024, 7:59 PMkotlin {
listOf(
iosX64(),
iosArm64(),
iosSimulatorArm64()
).forEach { iosTarget ->
iosTarget.binaries.framework {
baseName = "ComposeApp"
isStatic = true
}
}
cocoapods {
version = "1.0"
summary = "CocoaPods test library"
homepage = "<https://github.com/JetBrains/kotlin>"
pod("FirebaseAuth") {
source = git("<https://github.com/firebase/firebase-ios-sdk>") {
tag = "10.16.0"
}
}
}
.....
}
but then I get this error
Specs satisfying the `FirebaseAuth (from `<https://github.com/firebase/firebase-ios-sdk>`, tag `10.16.0`)` dependency were found, but they required a higher minimum deployment target.
François
10/22/2024, 8:05 PMvashisthg
10/23/2024, 5:56 AMvashisthg
10/23/2024, 6:04 AMcomposeApp
module as generated by the kmm generator.François
10/23/2024, 6:08 AM