https://github.com/edgeapp/airbitz-ios-gui-private
Airbitz iOS GUI
https://github.com/edgeapp/airbitz-ios-gui-private
Last synced: 10 months ago
JSON representation
Airbitz iOS GUI
- Host: GitHub
- URL: https://github.com/edgeapp/airbitz-ios-gui-private
- Owner: EdgeApp
- Created: 2014-04-03T23:43:05.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2017-04-18T21:05:44.000Z (about 9 years ago)
- Last Synced: 2025-04-21T08:13:31.865Z (about 1 year ago)
- Language: Objective-C
- Homepage:
- Size: 62.7 MB
- Stars: 1
- Watchers: 16
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Airbitz iOS
## Build Airbitz iOS in xcode
cd $REPO_DIR
git clone git@github.com:Airbitz/airbitz-ios-gui.git
cd Airbitz
cp Config.h.example Config.h
Paste API keys from Airbitz into Config.h fields.
API keys for Airbitz Core can be obtained from
https://developer.airbitz.co
Install Cocoapods
sudo gem install cocoapods
Update Airbitz 'Podfile' to pull AirbitzCore from developer.airbitz.co
Uncomment the following line from 'airbitz-ios-gui/Podfile'
pod 'AirbitzCore', :http => "https://developer.airbitz.co/download/airbitz-core-objc-newest.tgz"
If you want to use the 'develop' build of `airbitz-core` with functionality of the next release. Use this line instead
pod 'AirbitzCore', :http => "https://developer.airbitz.co/download/airbitz-core-objc-develop-newest.tgz"
Comment out the following line
pod 'AirbitzCore', :path => '../airbitz-core-objc/'
Install the pods
pod install
Due to a bug in Cocoapods, you may need to also run
xcproj touch
This will clear up the project file which gets corrupted by pod install turning the ASCII format into XML
Next fire up the xcode project
open airbitz-ios-gui/Airbitz.xcworkspace
Once in xcode you can run Command-R to run it in an emulator.