As of the newest daily builds ( build #1138 and higher), we’ve added Android intent filter support which will allow your app to be launched via URL schemes. It’s currently undocumented because it’s in the experimental phase. Partly because I don’t fully understand the proper way to set up an intent filter just yet, since they’re kind of complicated on Android… nor do I have the time to experiment with it. But you’re welcome to give it a try.
Adding the following to your “build.settings” file will set up your app to be launched via a URL scheme from another app…
settings = { android = { intentFilters = { { label = "Optional Title Goes Here", actions = { "android.intent.action.VIEW" }, categories = { "android.intent.category.DEFAULT", "android.intent.category.BROWSABLE", }, data = { scheme = "corona" }, }, -- You can add more intent filters here. }, }, }
I’ve tested the above and it will launch the app via a URL such as “corona://test”. You should change the name of the scheme for your app of course, but this should give you something to work with.
Google documents intent filters here…
http://developer.android.com/guide/components/intents-filters.html
http://developer.android.com/guide/topics/manifest/intent-filter-element.html