Commit 85d574eb authored by Libin Lu's avatar Libin Lu Committed by GitHub

Merge pull request #519 from goulvench/patch-1

Fix pod installation syntax
parents dd2a0d5d 5abbc848
......@@ -171,12 +171,24 @@ Notes:
### Pod approach:
Make sure you have Cocoapods version > 1.0
Make sure you have [Cocoapods](https://cocoapods.org/) version > 1.0
Install the `Firebase/Messaging` pod:
Configure the project:
```
cd ios && pod init
pod install Firebase/Messaging
```
(In case of syntax errors, `open YOURApp.xcodeproj/project.pbxproj` and fix them.)
Edit the newly created `Podfile`:
```diff
# Pods for YOURAPP
+ pod 'FirebaseMessaging'
```
Install the `Firebase/Messaging` pod:
```
pod install
```
NOTE: you don't need to enable `use_frameworks!`. if you have to have `use_frameworks!` make sure you don't have `inherit! :search_paths`
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment