From 8ad50323647bf17d2927e4ab93921e43950059fe Mon Sep 17 00:00:00 2001 From: Daniel Gomez Date: Thu, 13 Aug 2020 16:29:24 -0500 Subject: [PATCH] Add docs about min iOS version on Podfile --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 7c91eff..841f22e 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,12 @@ Once you have the Facebook App ID figured out, then you'll just have to copy-pas A sample of a complete Info.plist file can be found [here](https://github.com/roughike/flutter_facebook_login/blob/master/example/ios/Runner/Info.plist#L49-L70). +Your Podfile should define a minimum iOS version like this: +**\/ios/Podfile** +``` +platform :ios, '9.0' +``` + Done! ## How do I use it?