From 15fba84b038ea954c01efeceb55004ecdfdee558 Mon Sep 17 00:00:00 2001 From: Ilia Kolo Date: Thu, 4 May 2023 11:32:34 +0300 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e623776..69b00c6 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ You can add Conversations Client for iOS by adding the `https://github.com/twili In your Build Settings, you will also need to modify `Other Linker Flags` to include `-ObjC.` -As of the latest release of Xcode (currently 13.2), there is a [known issue](https://bugs.swift.org/browse/SR-13343) with consuming binary frameworks distributed via Swift Package Manager. The current workaround to this issue is to add a `Run Script Phase` to the `Build Phases` of your Xcode project. This `Run Script Phase` should come **after** the `Embed Frameworks` build phase. This new `Run Script Phase` should contain the following code: +There is a [known issue](https://bugs.swift.org/browse/SR-13343) with consuming binary frameworks distributed via Swift Package Manager. The current workaround to this issue is to add a `Run Script Phase` to the `Build Phases` of your Xcode project. This `Run Script Phase` should come **after** the `Embed Frameworks` build phase. This new `Run Script Phase` should contain the following code: ```sh find "${CODESIGNING_FOLDER_PATH}" -name '*.framework' -print0 | while read -d $'\0' framework @@ -30,10 +30,10 @@ We support integration using CocoaPods as well. You can add Twilio Conversations ```ruby source 'https://github.com/CocoaPods/Specs' -platform :ios, '12.0' +platform :ios, '13.0' target 'TARGET_NAME' do - pod 'TwilioConversationsClient', '~> 2.2' + pod 'TwilioConversationsClient', '~> 3.1' end ```