Skip to content

Commit 9052914

Browse files
committed
fix bad framework dir
1 parent 01ee210 commit 9052914

File tree

4 files changed

+537
-239
lines changed

4 files changed

+537
-239
lines changed

.github/workflows/firestore-ios.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Checkout
2121
uses: actions/checkout@master
2222
- name: Download C++ SDK
23-
run: curl -o firestore/ios/binary/firebase-cpp-sdk.zip https://dl.google.com/firebase/sdk/cpp/firebase_cpp_sdk_9.0.0.zip --create-dirs
23+
run: curl -o firestore/ios/binary/firebase-cpp-sdk.zip https://dl.google.com/firebase/sdk/cpp/firebase_cpp_sdk_11.0.0.zip --create-dirs
2424
- name: Extract SDK
2525
run: unzip firestore/ios/binary/firebase-cpp-sdk.zip -d firestore/ios/binary
2626
- name: Build

firestore/ios/Podfile

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@ platform :ios, '11.0'
33
target 'firestore-snippets-cpp' do
44
use_frameworks! :linkage => :static
55

6-
pod 'Firebase/Auth', '9.0.0'
7-
pod 'Firebase/Firestore', '9.0.0'
6+
pod 'Firebase/Auth', '10.9.0'
7+
pod 'Firebase/Firestore', '10.9.0'
88

99
end
1010

1111
post_install do |installer|
1212
installer.pods_project.targets.each do |target|
1313
target.build_configurations.each do |config|
1414
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
15-
config.build_settings["ARCHS[sdk=iphonesimulator*]"] = "x86_64"
1615
end
1716
end
1817
end

0 commit comments

Comments
 (0)