Data passed at application start - application:openURL:sourceApplication:annotation - implementing AppLinks

Hi,

I want to know how the app was started - in the normal way, or via a link.

iOS has this delegate; application:openURL:sourceApplication:annotation

so you can do this;

(BOOL)application:(UIApplication \*)application openURL:(NSURL \*)url sourceApplication:(NSString \*)sourceApplication annotation:(id)annotation {    NSLog(@"Launched with URL: %@", url.absoluteString); }

but how do I get that url in Corona?

(i realize that the delegate is more generate than just startup, but that doesn’t matter, i know if the app is starting or not… )

thanks.

i just found this… https://coronalabs.com/blog/2011/12/22/using-app-url-schemes-in-ios/

looks promising.

i just found this… https://coronalabs.com/blog/2011/12/22/using-app-url-schemes-in-ios/

looks promising.