canOpenURL support within Corona SDK

Does anyone know if we can pass values to the app we launch similar to how it works no on iOS? 

  1. print (system.openURL(“app1://random_value”)

And if the answer to that question is yes, does anyone out there have any idea how to pass these values into the Android app if we are launching it from a native (non-corona) application?  In other words I have a native Android app that launches my Corona app using a standard Android Intent: startActivity(starterIntent);

Is there such a way I can set up my Android Bundle such that the Corona app will extract it and make it available to me on start / resume?

On application startup, you can access the Android intent information via the launch arguments provided to the “main.lua”.
 
If the Android intent resumes your app (ie: the Corona activity is already running), then you can access the Android intent information via an “applicationOpen” event listener in Lua.
 
If you copy the following code to your “main.lua” file, it’ll print all information in your launch arguments and applicationOpen event to the Android log.  This should give you an idea of how Android intent information is passed to Lua.

local function printTable(table, stringPrefix) if not stringPrefix then stringPrefix = "### " end if type(table) == "table" then for key, value in pairs(table) do if type(value) == "table" then print(stringPrefix .. tostring(key)) print(stringPrefix .. "{") printTable(value, stringPrefix .. " ") print(stringPrefix .. "}") else print(stringPrefix .. tostring(key) .. ": " .. tostring(value)) end end end end local launchArgs = ... print("### --- Launch Arguments ---") printTable(launchArgs) local function onSystemEvent(event) print("\*\*\* system event type = " .. event.type) if (event.type == "applicationOpen") then print("### --- Application Open ---") printTable(event) end end Runtime:addEventListener("system", onSystemEvent) 

 
So, both the launch arguments and the applicationOpen event will have an “androidIntent” Lua table which is only made available on Android.  The androidIntent table will have the following fields…

-- Provides the URI returned by the Java Intent.getData() method. androidIntent.url -- Provides the action string returned by the Intent.getAction() method. androidIntent.action -- A Lua string array matching the collection returned by the Intent.getCategories() method. androidIntent.categories -- A Lua table matching the Bundle returned by the Intent.getExtras() method. -- The keys are strings and the values are Lua types that best match the Java value types. -- Note that this does support nested tables/bundles. androidIntent.extras 

 
Also, make sure to do if checks on each of the fields in the “androidIntent” table before attempting to access its data.  If the Java equivalent Intent methods return null, then they will be set to nil on the Lua side.
 
I hope this helps!

@Joshua

Thanks!  Incredibly helpful response.

Hello,

was this ever implemented in CoronaSDK? This is really a very useful function in many circumstances on iOS.

Thanks.

It’s not directly implemented.  However, system.openURL() will return true or false if the app was launched or not.  It’s not quite the same functionality, but it is some information that could be useful.

Rob

Hello,

was this ever implemented in CoronaSDK? This is really a very useful function in many circumstances on iOS.

Thanks.

It’s not directly implemented.  However, system.openURL() will return true or false if the app was launched or not.  It’s not quite the same functionality, but it is some information that could be useful.

Rob

Will this ever be implemented in Corona sdk? system.openURL() doesnt really gets the job done…

Will this ever be implemented in Corona sdk? system.openURL() doesnt really gets the job done…

I would also like to be able to check if an app exists without opening it. Specifically, I want to only show a WhatsApp button if the user has WhatsApp  installed. I have tried this ( uses device.lua )  :

 

local canOpenWhatsApp = false if device.isAndroid then local appIcon = display.newImage( 'android.app.icon://com.whatsapp' ) if appIcon then canOpenWhatsApp = true end appIcon:removeSelf() appIcon = nil elseif device.isApple then canOpenWhatsApp = system.openURL( 'whatsapp:' ) end -- ... Later ... if canOpenWhatsApp then -- Code to create whatsapp share button else -- Code to create an alternative share button end

I haven’t tested this on android and don’t know if I have the right value for whatsapp package name, but I know on iOS this doesn’t work because system.openURL goes ahead and opens the url straight away if it can.

Any suggestions?
 

There is an open feature request for this. It only has 54 votes at the moment. I would recommend getting more votes on this. There isn’t a target number, just more.

http://feedback.coronalabs.com/forums/188732-corona-sdk-feature-requests-feedback/suggestions/3574868-canopenurl-method

Rob

I would also like to be able to check if an app exists without opening it. Specifically, I want to only show a WhatsApp button if the user has WhatsApp  installed. I have tried this ( uses device.lua )  :

 

local canOpenWhatsApp = false if device.isAndroid then local appIcon = display.newImage( 'android.app.icon://com.whatsapp' ) if appIcon then canOpenWhatsApp = true end appIcon:removeSelf() appIcon = nil elseif device.isApple then canOpenWhatsApp = system.openURL( 'whatsapp:' ) end -- ... Later ... if canOpenWhatsApp then -- Code to create whatsapp share button else -- Code to create an alternative share button end

I haven’t tested this on android and don’t know if I have the right value for whatsapp package name, but I know on iOS this doesn’t work because system.openURL goes ahead and opens the url straight away if it can.

Any suggestions?
 

There is an open feature request for this. It only has 54 votes at the moment. I would recommend getting more votes on this. There isn’t a target number, just more.

http://feedback.coronalabs.com/forums/188732-corona-sdk-feature-requests-feedback/suggestions/3574868-canopenurl-method

Rob