- App公式サイト: https://proconapp.com
- プロコン公式: http://procon.gr.jp/
このリポジトリは高専プロコンアプリ(プロコンアプリ)のiOS版です。サーバーサイドなどの関連するサービスのリポジトリは以下にあります。
- APIサーバー https://github.com/saga-dash/proconapp-server
- ランディングページ https://github.com/novi/proconapp-lp
- ソーシャルフィードサーバー https://github.com/novi/procon-social-server
- iOS版 https://github.com/novi/proconapp
- Windows Phone版 https://github.com/TK-R/wpproconapp
- Android版 [https://github.com/sckm/ProconAppAndroid] (https://github.com/sckm/ProconAppAndroid)
- ランディングページ メール送信フォーム https://github.com/saga-dash/proconapp-form
(※README準備中です)
関連するリポジトリ含め、すべてMITです。詳細は各リポジトリ内のLICENSEをご覧ください。
- Xcode 6.4 & Swift 1.2 (TODO: Swift 2.0)
- iOS 8 以上
ビルドするには、AppGroupおよびEntitlementsの設定が必要です。
また、APIサーバーへの接続先・AppGroupを書いた Constants.swift
が必要です。以下のテンプレートから作成して、 ProconApp/ProconBase/Constants.swift
に置いてください。
import Foundation
class Constants {
static let APIBaseURL = "API endpoint"
static let AppGroupID = "..."
static let AppLPURL = "ランディングページURL"
public static let GATrackingID = "Google Analytics Tracking ID"
}