From a771744d190edba3989559a098cbafc2d6d7feb8 Mon Sep 17 00:00:00 2001 From: CloudWebRTC Date: Fri, 14 Oct 2022 08:01:39 +0800 Subject: [PATCH] add repair guide for pod install failing. (#187) * add repair guide for pod install failing. * Update README.md * Update README.md Co-authored-by: David Zhao * Update README.md Co-authored-by: David Zhao * Update README.md Co-authored-by: David Zhao * Update README.md Co-authored-by: David Zhao * Update README.md Co-authored-by: David Zhao * format. Co-authored-by: David Zhao --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index c5bfd5f..4a97008 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,14 @@ post_install do |installer| end ``` +For iOS, the minimum supported deployment target is `12.1`. You will need to add the following to your Podfile. + +```ruby +platform :ios, '12.1' +``` + +You may need to delete `Podfile.lock` and re-run `pod install` after updating deployment target. + ### Android We require a set of permissions that need to be declared in your `AppManifest.xml`. These are required by Flutter WebRTC, which we depend on.