sms on harmattan

sms on harmattan

Felipe Crochik

2012-01-16 03:59 UTC
Anybody knows of a replacement for the n900 Messaging ui dbus call?

This works on the n900 ....
QDBusMessage msg = QDBusMessage::createMethodCall(

"com.nokia.MessagingUI", // --dest

"/com/nokia/MessagingUI", // destination object path

"com.nokia.MessagingUI", // message name (w/o method)

"messaging_ui_interface_start_sms" // method

);

msg << "sms:" + number;

msg = QDBusConnection::sessionBus().call(msg);

qDebug() << msg;

return msg.type() != QDBusMessage::ErrorMessage;


I wonder if there is something similar on harmattan so I can avoid dealing
with telepathy.
BTW, does anybody know of any harmattan specific information about
telepathy?

Thanks,
Felipe

  •  Reply