You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -268,6 +268,17 @@ These properties are only accessible from the equivalent target's source set. Fo
268
268
.build()
269
269
```
270
270
271
+
### Running on iOS
272
+
273
+
On iOS the official [Firebase iOS SDK](https://github.com/firebase/firebase-ios-sdk) in not linked as a transtive dependency. Therefore, any project using this SDK needs to link the actual Firestore SDK as well. This can be done through your preferred installation method (Cocoapods/SPM).
274
+
275
+
Similarly, tests require linking as well. Make sure to add the required frameworks to the search path of your test targets. This can be done by specifying a `cocoapods` block in your `build.gradle`:
276
+
```kotlin
277
+
cocoapods {
278
+
pod("FirebaseCore") // Repeat for Firebase pods required by your project, e.g FirebaseFirestore for the `firebase-firestore` module.
279
+
}
280
+
```
281
+
271
282
## Contributing
272
283
If you'd like to contribute to this project then you can fork this repository.
0 commit comments