cordova - How to open up the Messages app via an Ionic 1 app? -


i know fact having link example: <a href="sms://12345">send message 12345</a> open messages app prepended number 12345 , way start writing new message number.

i can’t seem figure out how open list of messages, without sending in number. if this: <a href="sms://">open messages</a> nothing happens when click link.

it not @ possible, again, i'd confirm please.

sms://12345 deep link sends referrer sms application value 12345. messages app redirects activity regards content.

if messages app doesn't support empty deep link (a.e. sms://) - have nothing that.

for example manifest.xml of messages app

 <intent-filter>     <action android:name="android.intent.action.view" />     <action android:name="android.intent.action.sendto" />     <category android:name="android.intent.category.default" />     <category android:name="android.intent.category.browsable" />     <data android:scheme="sms" />     <data android:scheme="smsto" /> </intent-filter> <intent-filter>     <action android:name="android.intent.action.view" />     <action android:name="android.intent.action.sendto" />     <category android:name="android.intent.category.default" />     <category android:name="android.intent.category.browsable" />     <data android:scheme="mms" />     <data android:scheme="mmsto" /> </intent-filter> 

Comments

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -