Skip to content

Commit

Permalink
cocoapods version needs to be fuzzy
Browse files Browse the repository at this point in the history
  • Loading branch information
Reedyuk committed Apr 2, 2024
1 parent 480d782 commit aabf55e
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion firebase-auth/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ kotlin {
}
noPodspec()
pod("FirebaseAuth") {
version = "10.19.0"
version = "~> 10.19"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion firebase-config/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ kotlin {
}
noPodspec()
pod("FirebaseRemoteConfig") {
version = "10.19.0"
version = "~> 10.19"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion firebase-crashlytics/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ kotlin {
}
noPodspec()
pod("FirebaseCrashlytics") {
version = "10.19.0"
version = "~> 10.19"
extraOpts += listOf("-compiler-option", "-fmodules")
}
}
Expand Down
2 changes: 1 addition & 1 deletion firebase-database/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ kotlin {
}
noPodspec()
pod("FirebaseDatabase") {
version = "10.19.0"
version = "~> 10.19"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions firebase-firestore/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ kotlin {
// As of Firebase 10.17 Firestore has moved all ObjC headers to FirebaseFirestoreInternal and the kotlin cocoapods plugin does not handle this well
// Adding it manually seems to resolve the issue
pod("FirebaseFirestoreInternal") {
version = "10.19.0"
version = "~> 10.19"
}
pod("FirebaseFirestore") {
version = "10.19.0"
version = "~> 10.19"
extraOpts += listOf("-compiler-option", "-fmodules")
useInteropBindingFrom("FirebaseFirestoreInternal")
}
Expand Down
2 changes: 1 addition & 1 deletion firebase-functions/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ kotlin {
}
noPodspec()
pod("FirebaseFunctions") {
version = "10.19.0"
version = "~> 10.19"
extraOpts += listOf("-compiler-option", "-fmodules")
}
}
Expand Down
2 changes: 1 addition & 1 deletion firebase-installations/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ kotlin {
}
noPodspec()
pod("FirebaseInstallations") {
version = "10.19.0"
version = "~> 10.19"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion firebase-perf/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ kotlin {
}
noPodspec()
pod("FirebasePerformance") {
version = "10.19.0"
version = "~> 10.19"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion firebase-storage/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ kotlin {
}
noPodspec()
pod("FirebaseStorage") {
version = "10.19.0"
version = "~> 10.19"
extraOpts += listOf("-compiler-option", "-fmodules")
}
}
Expand Down

0 comments on commit aabf55e

Please sign in to comment.