Skip to content

Commit

Permalink
Fix patch/major instructions. (#7059)
Browse files Browse the repository at this point in the history
* Fix patch/major instructions.

* Consistency across docs
  • Loading branch information
ryanwilson authored Dec 1, 2020
1 parent 996e289 commit f019de2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions AppleSilicon.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ When specifying which version of Firebase you'd like in your Podfile, append `-M
See the following examples:

```
# Explicitly require the special `M1` tagged Firebase version.
pod 'Firebase/Analytics', '~> 7.2.0-M1'
# Explicitly require the special `M1` tagged Firebase version, locked to the major version.
pod 'Firebase/Analytics', '~> 7.2-M1'
# Do the same for any other Firebase pod used.
pod 'Firebase/Database', '~> 7.2.0-M1'
pod 'Firebase/Database', '~> 7.2-M1'
# You can also lock on the minor or major versions like so:
pod 'Firebase/Analytics, '~> 7.2-M1'
pod 'Firebase/Analytics, '~> 7-M1'
# You can also lock on the minor or patch versions like so:
pod 'Firebase/Analytics, '~> 7.2.0-M1'
pod 'Firebase/Analytics, '7.2.0-M1'
```

The CocoaPods issue has been fixed in
Expand Down

0 comments on commit f019de2

Please sign in to comment.