Hi,
I’m trying to set up URL scheme handling in my Corona app, receiving parameters. I can correctly receive parameters in 3 out of 4 of the following scenarios:
-
App cold open iOS: works (launchArgs are not populated, but the applicationOpen event is triggered)
-
App resume iOS: works (via applicationOpen event)
-
App cold open Android: does not work (launchArgs are not populated, and applicationOpen event is not triggered)
-
App resume Android: works (via applicationOpen event)
First, it seems inconsistent that ‘applicationOpen’ is called on cold open on iOS but not Android.
Second, I don’t know why I can’t get to populate launchArgs, I’m basically just doing something like this in my main.lua:
local launchArgs = ... printTable(launchArgs) -- prints nil
The app gets called via:
appname://?key=value
Thanks,
