Skip to content

Commit

Permalink
try with 11.4.0 as frameworks isn't picking up hot fix
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley committed Oct 23, 2024
1 parent 9592f70 commit 1352be7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/cloud_firestore/cloud_firestore/example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ target 'Runner' do
raise "Error - unable to locate firebase_ios_sdk.rb script in firebase_core, and no FirebaseSDKVersion specified"
end
end
# temporary measure for hot fix
if firebase_sdk_version == '11.4.1'
firebase_sdk_version = '11.4.0'
end

pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => "#{firebase_sdk_version}"
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ target 'Runner' do
end
end

# temporary measure for hot fix
if firebase_sdk_version == '11.4.1'
firebase_sdk_version = '11.4.0'
end

pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => "#{firebase_sdk_version}"
end

Expand Down

0 comments on commit 1352be7

Please sign in to comment.