Skip to content

Commit 1fad9c3

Browse files
committed
bump ios pod
1 parent e52c3be commit 1fad9c3

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

firebase-app/src/iosMain/kotlin/dev/gitlive/firebase/firebase.kt

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,17 @@ public actual data class FirebaseApp internal constructor(public val ios: FIRApp
2727
actual val name: String
2828
get() = ios.name
2929
actual val options: FirebaseOptions
30-
get() = ios.options.run { FirebaseOptions(bundleID, APIKey!!, databaseURL!!, trackingID, storageBucket, projectID, GCMSenderID) }
30+
get() = ios.options.run {
31+
FirebaseOptions(
32+
bundleID,
33+
APIKey!!,
34+
databaseURL,
35+
null,
36+
storageBucket,
37+
projectID,
38+
GCMSenderID
39+
)
40+
}
3141

3242
public actual suspend fun delete() {
3343
val deleted = CompletableDeferred<Unit>()
@@ -44,7 +54,6 @@ public actual fun Firebase.apps(context: Any?): List<FirebaseApp> = FIRApp.allAp
4454
private fun FirebaseOptions.toIos() = FIROptions(this@toIos.applicationId, this@toIos.gcmSenderId ?: "").apply {
4555
APIKey = this@toIos.apiKey
4656
databaseURL = this@toIos.databaseUrl
47-
trackingID = this@toIos.gaTrackingId
4857
storageBucket = this@toIos.storageBucket
4958
projectID = this@toIos.projectId
5059
}

firebase-auth/src/iosMain/kotlin/dev/gitlive/firebase/auth/auth.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ public actual class AuthTokenResult(public val ios: FIRAuthTokenResult) {
145145
internal fun ActionCodeSettings.toIos() = FIRActionCodeSettings().also {
146146
it.setURL(NSURL.URLWithString(url))
147147
androidPackageName?.run { it.setAndroidPackageName(packageName, installIfNotAvailable, minimumVersion) }
148-
it.setDynamicLinkDomain(dynamicLinkDomain)
149148
it.setHandleCodeInApp(canHandleCodeInApp)
150149
iOSBundleId?.run { it.setIOSBundleID(this) }
151150
}

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ kotlinx-datetime = "0.7.1"
1616
kotlinter = "5.2.0"
1717
settings-api = "2.0"
1818
settings-language = "2.0"
19-
firebase-cocoapods = "11.4.0"
20-
ios-deploymentTarget = "13.0"
19+
firebase-cocoapods = "12.1.0"
20+
ios-deploymentTarget = "15.0"
2121
test-logger-plugin = "4.0.0"
2222
dokka = "2.0.0"
2323

0 commit comments

Comments
 (0)