My app registers with the Hotspot helper entitlement and it works as expected.
However I notice that the app launches in the background each time the hotspot helper handler is invoked. It wakes up and hits
and
However the launch keys do not indicate a reason. Is it possible for my app not to wake up and hit the application delegate methods and only execute whats in the Hotspot helper handler?
However I notice that the app launches in the background each time the hotspot helper handler is invoked. It wakes up and hits
Code Block - (BOOL)application:(UIApplication *)application willFinishLaunchingWithOptions:(NSDictionary<UIApplicationLaunchOptionsKey,id> *)launchOptions
and
Code Block - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
However the launch keys do not indicate a reason. Is it possible for my app not to wake up and hit the application delegate methods and only execute whats in the Hotspot helper handler?