1

I have an SMS href link that works great in the mobile browser but when deployed to android using jasonette I get ERR_UNKOWN_URL_SCHEME. Is there a simple fix for this or is it even possible?

<a href="sms://+15558675309">Text</a>

Here is my json file-

{
"$jason": {
    "head": {
        "title": "Web Container Agent"

    },
    "body": {
        "background": {
            "type": "html",
            "url": "www.mysite.com/test.php",
            "id": "app",
            "action": {
               "type": "$default"
            }
        }
    }
}
}
Ryan D
  • 741
  • 1
  • 11
  • 29

1 Answers1

2

I am very new to this but i also had the same sort of problem, it was fixed by setting the correct view.

"view": "app"

Something like this works

{ "type": "label", 
        "text": "text message", 
        "href": {
          "url": "sms://+87687687688678",
         "view": "app"
}
Jerry
  • 46
  • 6
  • Where do you set the view in the json file under action? I updated the question to show my json file – Ryan D Aug 16 '18 at 17:09