mirror of
https://github.com/UrbanApps/Armchair.git
synced 2026-01-11 22:30:50 +01:00
77 lines
2.5 KiB
Swift
77 lines
2.5 KiB
Swift
// AppDelegate.swift
|
|
//
|
|
// Copyright (c) 2014 Armchair (http://github.com/UrbanApps/Armchair)
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
#if os(iOS)
|
|
|
|
import UIKit
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
var window: UIWindow?
|
|
|
|
func application(_ application: UIApplication, willFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
|
|
AppDelegate.setupArmchair()
|
|
return true
|
|
}
|
|
}
|
|
|
|
let appID = "361309726" // Pages iOS
|
|
|
|
#elseif os(OSX)
|
|
|
|
import Cocoa
|
|
|
|
@NSApplicationMain
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
|
@IBOutlet weak var window: NSWindow!
|
|
|
|
override init() {
|
|
AppDelegate.setupArmchair()
|
|
}
|
|
}
|
|
|
|
let appID = "409201541" // Pages Mac
|
|
|
|
#else
|
|
#endif
|
|
|
|
import Armchair
|
|
|
|
extension AppDelegate {
|
|
|
|
class func setupArmchair() {
|
|
// Normally, all the setup would be here.
|
|
// But, because we are presenting a few different setups in the example,
|
|
// The config will be in the view controllers
|
|
// Armchair.appID("408981381") // Pages
|
|
//
|
|
// It is always best to load Armchair as early as possible
|
|
// because it needs to receive application life-cycle notifications
|
|
//
|
|
// NOTE: The appID call always has to go before any other Armchair calls
|
|
Armchair.appID(appID)
|
|
Armchair.debugEnabled(true)
|
|
}
|
|
}
|
|
|
|
|