-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π synced local './README.md' with remote './README.md'
- Loading branch information
1 parent
3e5b799
commit 1240cc6
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |