From 354b6d4673e5cbebe77c57f7b5fb902a920772a9 Mon Sep 17 00:00:00 2001 From: Paul Beusterien Date: Mon, 21 Jun 2021 10:01:09 -0700 Subject: [PATCH] Update minimum iOS version in README (#967) Since its 7.0.0 release, Firebase requires iOS 10.0+ --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1821957b93e..89a695f45d2 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ FirebaseUI clients are also available for [Android](https://github.com/firebase/ ## Installing FirebaseUI for iOS -FirebaseUI supports iOS 8.0+ and Xcode 11+. We recommend using [CocoaPods](https://cocoapods.org/pods/FirebaseUI), add +FirebaseUI supports iOS 10.0+ and Xcode 11+. We recommend using [CocoaPods](https://cocoapods.org/pods/FirebaseUI), add the following to your `Podfile`: ```ruby @@ -47,7 +47,7 @@ pod 'FirebaseUI/Phone', '~> 8.0' If you're including FirebaseUI in a Swift project, make sure you also have: ```ruby -platform :ios, '9.0' +platform :ios, '10.0' use_frameworks! ```