This is a sample project for iOS beginners to integrate with CircleProgrammableWalletSDK.
- Bookmark
Install Apple’s Xcode development software: Xcode in the Apple App Store.
CocoaPods is a dependency manager for iOS projects. Install CocoaPods by Homebrew. (suggested)
Check if Homebrew is installed:
$ brew
How to install Homebrew in MacOS: Link
Shared SSH key for PW SDK Hackathon
$ vi ~/.ssh/{your SSH key name}
, then paste the private key$ chmod 400 ~/.ssh/{your SSH key name}
- Open your
~/.ssh/config
file, then modify the file to contain the following lines.Host bitbucket.com AddKeysToAgent yes UseKeychain yes IdentityFile ~/.ssh/{your SSH key name}
$ ssh-add --apple-use-keychain ~/.ssh/{your SSH key name}
$ ssh -T [email protected]
to try the connection
How to setup an exist SSH key? : see this
- Clone this repo
- Open project folder
$ cd programmable-wallet-sdk-ios-sample
- Run
$ pod install
to installCircleProgrammableWalletSDK
- Run
$ pod update
to updateCircleProgrammableWalletSDK
(Optional) - Open the
programmable-wallet-sdk-ios-sample.xcworkspace
in Xcode