-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔄 synced file(s) with circlefin/w3s-ios-sdk-internal (#14)
- Loading branch information
1 parent
50ff4d7
commit 30bc48b
Showing
15 changed files
with
88 additions
and
20 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. |
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
Binary file modified
BIN
+0 Bytes
(100%)
Resources/CircleProgrammableWalletSDKBundle.bundle/_CodeSignature/CodeDirectory
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Resources/CircleProgrammableWalletSDKBundle.bundle/_CodeSignature/CodeRequirements-1
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
Resources/CircleProgrammableWalletSDKBundle.bundle/_CodeSignature/CodeSignature
Binary file not shown.
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
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
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
Binary file modified
BIN
+0 Bytes
(100%)
...ProgrammableWalletSDK.framework.dSYM/Contents/Resources/DWARF/CircleProgrammableWalletSDK
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...-arm64_x86_64-simulator/CircleProgrammableWalletSDK.framework/CircleProgrammableWalletSDK
Binary file not shown.
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
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
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
Binary file modified
BIN
+0 Bytes
(100%)
...ProgrammableWalletSDK.framework.dSYM/Contents/Resources/DWARF/CircleProgrammableWalletSDK
Binary file not shown.
24 changes: 24 additions & 0 deletions
24
Specs/CircleProgrammableWalletSDK/1.0.14/CircleProgrammableWalletSDK.podspec
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'CircleProgrammableWalletSDK' | ||
s.version = '1.0.14' | ||
s.license = 'Apache License, Version 2.0' | ||
s.summary = 'CircleProgrammableWalletSDK for iOS.' | ||
s.homepage = 'https://www.circle.com/web3-services' | ||
s.author = 'CIRCLE' | ||
s.source = { :git => "https://github.com/circlefin/w3s-ios-sdk.git", | ||
:tag => s.version } | ||
|
||
s.platform = :ios, '13.0' | ||
s.swift_versions = ['5'] | ||
|
||
s.ios.vendored_frameworks = 'Source/*.xcframework' | ||
s.resources = 'Resources/*' | ||
|
||
# Dependency | ||
s.dependency 'Alamofire', '5.5.0' | ||
s.dependency 'DeviceKit', '5.1.0' | ||
s.dependency 'SDWebImage', '5.9.1' | ||
s.dependency 'IQKeyboardManagerSwift', '6.5.11' | ||
s.dependency 'SnapKit', '5.6.0' | ||
|
||
end |