mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-04-04 22:56:45 +08:00
28 lines
511 B
Markdown
28 lines
511 B
Markdown
---
|
|
title: iOS Setup
|
|
description: Manually integrate Remote Config into your iOS application.
|
|
---
|
|
|
|
# iOS Manual Linking
|
|
|
|
## Manual iOS Integration via CocoaPods
|
|
|
|
> The following steps are only required if your environment does not have access to React Native
|
|
> auto-linking.
|
|
|
|
#### Add Remote Config Pod
|
|
|
|
**`ios/Podfile`**:
|
|
|
|
```ruby{4}
|
|
// ..
|
|
target 'app' do
|
|
// ..
|
|
pod 'RNFBConfig', :path => '../node_modules/@react-native-firebase/remote-config/ios'
|
|
end
|
|
```
|
|
|
|
## Manual iOS Integration via Frameworks
|
|
|
|
_TODO_
|