I have:
intentFilters = { { label = "\<my app\>", actions = { "android.intent.action.VIEW" }, categories = { "android.intent.category.DEFAULT", "android.intent.category.BROWSABLE", }, data = { scheme = "zoneInit", host="com.krustypetes.davida.customurl" }, },
in my build.settings to create a custom url in an Android App.
When passing: zoneInit://?sData=[xxxxxxxxxx] in either an email or sms, neither is recognizing it as a link and therefore won’t start the app.
Question 1: how can I be sure that the URL scheme was actually created? and
Question 2: I’ve read that it is up to the device to recognize (or not) the scheme and determine how it responds to it. If so, is there a better, consistent way to execute the scheme and start the app?
Thanks