Is UnityEngine implemented any callback / delegate I can listen to,
for catching app launches with URL scheme?
I can see that the generated Xcode project does something in UnityAppController.mm.
Which later seems to...
Callback on launching from URL Scheme?
for catching app launches with URL scheme?
I can see that the generated Xcode project does something in UnityAppController.mm.
Code (Objective-C):
- - (BOOL)application:(UIApplication*)application openURL:(NSURL*)url sourceApplication:(NSString*)sourceApplication annotation:(id)annotation
- {
- // ...
- AppController_SendNotificationWithArg(kUnityOnOpenURL, notifData);
- // ...
- }
Callback on launching from URL Scheme?