Files
react-native-firebase/docs/auth/ios.md
2019-05-01 13:34:07 +01:00

28 lines
487 B
Markdown

---
title: iOS Setup
description: Manually integrate Authentication into your iOS application.
---
# iOS Setup
## Manual iOS Integration via CocoaPods
> The following steps are only required if your environment does not have access to React Native
auto-linking.
#### Add Analytics Pod
**`ios/Podfile`**:
```ruby{4}
// ..
target 'app' do
// ..
pod 'RNFBAuth', :path => '../node_modules/@react-native-firebase/auth/ios'
end
```
## Manual iOS Integration via Frameworks
*TODO*