Hello,
21.07.2015, 14:36, neotericdevelo...@gmail.com kirjoitti:
I tried to open default messaging app using the below code(qml). But
its not invoking the msg app.
Qt.openUrlExternally("sms:?body=msgtosend");
I also tried this one by providing dummy phone number.
Qt.openUrlExternally("sms:012
sms:+1234567890?body=hello works for me
-- Исходное сообщение --
От: neotericdevelo...@gmail.com
Кому: devel@lists.sailfishos.org
Отправлено: 21.07.2015 16:36:38
Тема: [SailfishDevel] Opening messaging app from qml.
Hello Sailors..
I tried to open default messaging app using the below
Hi,
You can open messaging app with dbus call. C++ code will look like this
void MyClass::composeSMS(const QString &number)
{
if (!number.isEmpty()) {
QDBusMessage message = QDBusMessage::createMethodCall(
"org.nemomobile.qmlmessages",
"/",
Hello Sailors..
I tried to open default messaging app using the below code(qml). But its not
invoking the msg app.
Qt.openUrlExternally("sms:?body=msgtosend");
I also tried this one by providing dummy phone number.
Qt.openUrlExternally("sms:0123456789?body=msgtosend");
Still not working.
How