Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to send SMS in Qt for Android?

Tags:

android

sms

qt

qt5

What is the official API in Qt5.2 (which started supporting Android and iOS officially) for sending text messages? or generally the Messaging API.

like image 379
Mousa Avatar asked Dec 06 '25 04:12

Mousa


1 Answers

Currently Qt mostly work for GUI only stuff on Android. To be able to do what you want you have to call Java code from C++. I suggest you start of by extending QtActivity (and call super on the functions already implemented like onCreate() etc.). Then you would have to code using the Android SMS Manager class.

More information and an example on how to call Java code from C++/Qt can be found here.

This should get you started if you decide to proceed.

like image 116
uniquenamehere Avatar answered Dec 07 '25 23:12

uniquenamehere