Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 1.69 KB

File metadata and controls

39 lines (33 loc) · 1.69 KB

SkyWay iOS Sample

Sample application of SkyWayiOSSDK

How to build

  1. Register an account on SkyWay and get an API key
  2. Clone or download this repository.
  3. Open "SkyWay-iOS-Sample.xcodeproj"
  4. Add "SkyWay.framework" library to the "Link Binary With Libraries" build phase of your project.
  5. Download "SkyWay.framework" from SkyWay
  6. 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";

NOTICE

This application requires v0.2.0+ of SkyWay iOS SDK.


ビルド方法

  1. SkyWayでアカウントを作成し、APIkeyを取得
  2. このレポジトリをクローンまたはダウンロード
  3. "SkyWay-iOS-Sample.xcodeproj"を開く
  4. "SkyWay.framework"をプロジェクトのBuild Phasesの"Link Binary With Libraries"に追加
  5. "SkyWay.framework"はSkyWayからダウンロード
  6. "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";

注意事項

本アプリケーションはSkyWay iOS SDKのv0.2.0以降で動作します。