spiegel-keyman/ios/samples/KMSample1/KMSample1/AppDelegate.swift
2017-12-07 14:37:24 +07:00

22 lines
554 B
Swift

//
// AppDelegate.swift
// KMSample1
//
// Created by Gabriel Wong on 2017-10-06.
// Copyright © 2017 SIL International. All rights reserved.
//
import KeymanEngine
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]? = nil) -> Bool {
KeymanEngine.log.outputLevel = .debug
KeymanEngine.log.logAppDetails()
return true
}
}