We have the following build.settings file
settings = { android = { usesPermissions = { "android.permission.INTERNET", }, intentFilters = { { label = "My App Name", actions = { "android.intent.action.VIEW" }, categories = { "android.intent.category.DEFAULT", "android.intent.category.BROWSABLE", }, data = { scheme = "myappname" }, }, }, }, orientation = { default = "portrait", supported = { "portrait" }, }, }
And then we are sending out an email to users that has a link <a href=“myappname://test”/> however this link is not doing anything. On the Android Gmail app, where there should be links there are no links at all, just text. The links are only showing up when I check Gmail through the Android Chrome browser. Also, if I just type “myappname://test” in the Android Chrome browser, it simply does a Google.com search for that string.
I am using the latest public release. Anyone have any ideas?