I am trying to send a sms from my html app used on my android dual sim phone. It fills the two field number & body text, but it does not select the default sim & sends sms when link is clicked.
What changes to make to this code to allow it directly to send sms using defult sim when link is clicked.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
</head>
<body>
<header class="bar bar-nav">
<h1 class="title">SMS Demo</h1>
</header>
<a href="sms://09013111111?body=Hello">Link</a>
</body>
</html>