Thanks for the replies. Yeah I’ve stumbled across all of those on my google searching and couldn’t glean anything useful for using other apps’ URI schemes (seems like some people say URI some say URL, also not sure which is technically correct) for Android.
Right now I’m attempting to use Corona Native and make a plugin for more easily launching activities of another application, and am making great progress. If I get it fully working I’ll try to put it on the market for other people to use.
My build.settings, which I think isn’t what’s causing the potential issue.
android = { usesExpansionFile = false, usesPermissions = { "android.permission.INTERNET", "android.permission.WRITE\_EXTERNAL\_STORAGE", --optional permission used to display current location via the GPS "android.permission.ACCESS\_FINE\_LOCATION", --optional permission used to display current location via WiFi or cellular service "android.permission.ACCESS\_COARSE\_LOCATION", }, usesFeatures = { -- If you set permissions "ACCESS\_FINE\_LOCATION" and "ACCESS\_COARSE\_LOCATION" above, -- you may want to set up your app to not require location services as follows. -- Otherwise, devices that do not have location sevices (such as a GPS) will be unable -- to purchase this app in the app store. { name = "android.hardware.location", required = false }, { name = "android.hardware.location.gps", required = false }, { name = "android.hardware.location.network", required = false } }, }, plugins = { ["CoronaProvider.native.popup.social"] = { publisherId = "com.coronalabs" }, -- ["CoronaProvider.native.popup.activity"] = -- { -- publisherId = "com.coronalabs" -- }, ["plugin.bit"] = { publisherId = "com.coronalabs" }, ["plugin.notifications.v2"] = { publisherId = "com.coronalabs" }, },
I was more wondering whether it’s actually supposed to be possible on Android. If it is perhaps there’s something setup wrong in the app I am trying to open, though I don’t think this is the case.