030c3eb428
* app updated * readme updated * rename base folder * update chatty's readme * move apps to packages dir * update repo overview Co-authored-by: diegoveloper <diego.velasquez.lopez@gmail.com>
46 lines
1.7 KiB
Swift
46 lines
1.7 KiB
Swift
import UIKit
|
|
import Flutter
|
|
|
|
@UIApplicationMain
|
|
@objc class AppDelegate: FlutterAppDelegate {
|
|
let sharedDefaults = UserDefaults(suiteName: "group.io.getstream.flutter")
|
|
|
|
override func application(
|
|
_ application: UIApplication,
|
|
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
|
) -> Bool {
|
|
if let messageQueue = sharedDefaults?.stringArray(forKey: "messageQueue") {
|
|
UserDefaults.standard.setValue(messageQueue, forKey: "flutter.messageQueue")
|
|
sharedDefaults?.removeObject(forKey: "messageQueue")
|
|
}
|
|
|
|
if #available(iOS 10.0, *) {
|
|
UNUserNotificationCenter.current().delegate = self
|
|
}
|
|
|
|
GeneratedPluginRegistrant.register(with: self)
|
|
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
|
}
|
|
|
|
override func applicationDidEnterBackground(_ application: UIApplication) {
|
|
if let apiKey = UserDefaults.standard.string(forKey: "flutter.KEY_API_KEY") {
|
|
sharedDefaults?.setValue(apiKey, forKey: "KEY_API_KEY")
|
|
}
|
|
|
|
if let token = UserDefaults.standard.string(forKey: "flutter.KEY_TOKEN") {
|
|
sharedDefaults?.setValue(token, forKey: "KEY_TOKEN")
|
|
}
|
|
|
|
if let userId = UserDefaults.standard.string(forKey: "flutter.KEY_USER_ID") {
|
|
sharedDefaults?.setValue(userId, forKey: "KEY_USER_ID")
|
|
}
|
|
}
|
|
|
|
override func applicationWillEnterForeground(_ application: UIApplication) {
|
|
if let messageQueue = sharedDefaults?.stringArray(forKey: "messageQueue") {
|
|
UserDefaults.standard.setValue(messageQueue, forKey: "flutter.messageQueue")
|
|
sharedDefaults?.removeObject(forKey: "messageQueue")
|
|
}
|
|
}
|
|
}
|