Sample application of SkyWayiOSSDK
- Register an account on SkyWay and get an API key
- Clone or download this repository.
- Open "SkyWay-iOS-Sample.xcodeproj"
- Add "SkyWay.framework" library to the "Link Binary With Libraries" build phase of your project.
- Download "SkyWay.framework" from SkyWay
- Set kAPIKey and kDomain to your API key/Domain registered on SkyWay.io at the top of both "DataConnectionViewController.m" and "MediaConnectionViewController.m" and build!
// Enter your APIkey and Domain
// Please check this page. >> https://skyway.io/ds/
static NSString *const kAPIkey = @"yourAPIKEY";
static NSString *const kDomain = @"yourDomain";
##Installation of SkyWay.framework with CocoaPods Podfile
platform :ios, '7.0'
pod 'SkyWay-iOS-SDK'
Install
pod install
This application requires v0.2.0+ of SkyWay iOS SDK.
- SkyWayでアカウントを作成し、APIkeyを取得
- このレポジトリをクローンまたはダウンロード
- "SkyWay-iOS-Sample.xcodeproj"を開く
- "SkyWay.framework"をプロジェクトのBuild Phasesの"Link Binary With Libraries"に追加
- "SkyWay.framework"はSkyWayからダウンロード
- "DataConnectionViewController.m" と "MediaConnectionViewController.m"の上部にあるkAPIKeyとkDomainにAPIkeyとDomainを入力し、ビルド
// Enter your APIkey and Domain
// Please check this page. >> https://skyway.io/ds/
static NSString *const kAPIkey = @"yourAPIKEY";
static NSString *const kDomain = @"yourDomain";
##CocoaPodsを利用したSkyWay.frameworkのインストール Podfile
platform :ios, '7.0'
pod 'SkyWay-iOS-SDK'
Install
pod install
本アプリケーションはSkyWay iOS SDKのv0.2.0以降で動作します。