Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Gray-Wind authored May 4, 2023
1 parent 8491c32 commit 15fba84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```

Expand Down

0 comments on commit 15fba84

Please sign in to comment.