Skip to content

Commit

Permalink
πŸ”„ synced local './README.md' with remote './README.md'
Browse files Browse the repository at this point in the history
  • Loading branch information
circle-github-action-bot committed Feb 29, 2024
1 parent 3e5b799 commit 1240cc6
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,45 @@
# w3s-ios-sdk

## Installation

### CocoaPods

To integrate ProgrammableWalletSDK into your Xcode project using CocoaPods, specify it in your `Podfile`:

```shell
source 'https://github.com/CocoaPods/Specs.git'

pod 'CircleProgrammableWalletSDK'
```

The Podfile setup from the Sample App.

```shell
source 'https://github.com/circlefin/w3s-ios-sdk.git'
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '13.0'

target 'w3s-ios-sample-app-wallets' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!

# Applicable before CircleProgrammableWalletSDK version 1.0.12
# use_frameworks! :linkage => :static

pod 'CircleProgrammableWalletSDK'

end

post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'

# See this: https://developer.apple.com/forums/thread/725300
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
```

> Please refer to the [Sample App](https://github.com/circlefin/w3s-ios-sample-app-wallets) to see more details.

0 comments on commit 1240cc6

Please sign in to comment.