Skip to content

Commit 1d22091

Browse files
committed
Update README to reflect changes in the frameworks.
1 parent d42ca17 commit 1d22091

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

firestore/testapp/README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,14 @@ Building and Running the testapp
3333
sudo gem install cocoapods --pre
3434
```
3535
36+
- Update the pod versions in the Podfile to match the C++ SDK version that you are using.
37+
For instance: if you're using SDK version 8.2.0, use the following in the Podfile:
38+
39+
```
40+
pod 'Firebase/Firestore', '8.2.0'
41+
pod 'Firebase/Auth', '8.2.0'
42+
```
43+
3644
- From the testapp directory, install the CocoaPods listed in the Podfile
3745
by running,
3846
@@ -71,15 +79,15 @@ Building and Running the testapp
7179
7280
- Add the following frameworks from the Firebase C++ SDK to the project:
7381
74-
- frameworks/ios/universal/firebase.framework
75-
- frameworks/ios/universal/firebase_auth.framework
76-
- frameworks/ios/universal/firebase_firestore.framework
82+
- xcframeworks/firebase.xcframework/ios-arm64_armv7/firebase.framework
83+
- xcframeworks/firebase_firestore.xcframework/ios-arm64_armv7/firebase_firestore.framework
84+
- xcframeworks/firebase_auth.xcframework/ios-arm64_armv7/firebase_auth.framework
7785
- You will need to either,
7886
1. Check "Copy items if needed" when adding the frameworks, or
7987
2. Add the framework path in "Framework Search Paths"
8088
- e.g. If you downloaded the Firebase C++ SDK to
8189
`/Users/me/firebase_cpp_sdk`, then you would add the path
82-
`/Users/me/firebase_cpp_sdk/frameworks/ios/universal`.
90+
`/Users/me/firebase_cpp_sdk/xcframeworks/**`.
8391
- To add the path, in XCode, select your project in the project
8492
navigator, then select your target in the main window. Select
8593
the "Build Settings" tab, and click "All" to see all the build

0 commit comments

Comments
 (0)