mcc groups, limits to expend, delete child device, card status, responsive states, added some overrides to AppDelegate, router modified, sca wallet fixes

This commit is contained in:
2026-02-26 14:59:51 +01:00
parent 0c93440f9b
commit 7849240ff2
81 changed files with 4320 additions and 2068 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,5 +1,6 @@
import Flutter
import UIKit
import AntelopSDK
@main
@objc class AppDelegate: FlutterAppDelegate {
@@ -8,6 +9,29 @@ import UIKit
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
AntelopAppDelegate.shared.application(application, didFinishLaunchingWithOptions: launchOptions)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
override func applicationDidBecomeActive(_ application: UIApplication) {
AntelopAppDelegate.shared.applicationDidBecomeActive(application)
}
override func applicationWillTerminate(_ application: UIApplication) {
AntelopAppDelegate.shared.applicationWillTerminate(application)
}
override func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
AntelopAppDelegate.shared.application(application, didRegisterForRemoteNotificationsWithDeviceToken: deviceToken)
}
override func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
guard !AntelopAppDelegate.shared.didReceiveRemoteNotification(userInfo, fetchCompletionHandler: completionHandler) else {
return
}
}
override func application(_ application: UIApplication, performFetchWithCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
AntelopAppDelegate.shared.application(application, performFetchWithCompletionHandler: completionHandler)
}
}