[docs][ios] Add step to check the minimum platform version in your Podfile

This commit is contained in:
Chris Bianca 2017-08-30 15:03:20 +01:00
parent 3c2ecaee37
commit e93d057ab2
1 changed files with 6 additions and 1 deletions

View File

@ -50,7 +50,12 @@ Follow the instructions to install Cocoapods and create your Podfile [here](http
- Uncomment the `# platform :ios, '9.0'` line by removing the `#` character - Uncomment the `# platform :ios, '9.0'` line by removing the `#` character
- Change the version as required - Change the version as required
### 2.1) Add the required pods ### 2.1) Check the Podfile platform version
We recommend using a minimum platform version of at least 9.0 for your application to ensure that the correct version of the Firebase libraries are used. To do this, you need to uncomment or make sure the following line is present at the top of your `Podfile`:
`platform :ios, '9.0'`
### 2.2) Add the required pods
Simply add the following to your `Podfile` either at the top level, or within the main project target: Simply add the following to your `Podfile` either at the top level, or within the main project target:
```ruby ```ruby