Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. How to send SMS in android?
Forum Updated to NodeBB v4.3 + New Features

How to send SMS in android?

Scheduled Pinned Locked Moved Mobile and Embedded
36 Posts 12 Posters 5.7k Views 3 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Shrinidhi UpadhyayaS Offline
    Shrinidhi UpadhyayaS Offline
    Shrinidhi Upadhyaya
    wrote on last edited by
    #7

    Hi @Mikeeeeee , you need to add like this:-

    android: QT += androidextras
    

    Shrinidhi Upadhyaya.
    Upvote the answer(s) that helped you to solve the issue.

    1 Reply Last reply
    3
    • M Offline
      M Offline
      Mikeeeeee
      wrote on last edited by
      #8

      In .pro the file was compiled. If I add #include <Qt Android Extras> I get errors: 'QtAndroidExtras' file not found , QtAndroidExtras: No such file or directory
      #include <QtAndroidExtras>

      1 Reply Last reply
      0
      • SGaistS Offline
        SGaistS Offline
        SGaist
        Lifetime Qt Champion
        wrote on last edited by
        #9

        Might be a silly question but are you building that with your Qt Android kit ?

        Interested in AI ? www.idiap.ch
        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

        1 Reply Last reply
        0
        • M Offline
          M Offline
          Mikeeeeee
          wrote on last edited by
          #10

          MinGW does not compile, Clang compiles. Thanks.

          1 Reply Last reply
          0
          • SGaistS Offline
            SGaistS Offline
            SGaist
            Lifetime Qt Champion
            wrote on last edited by
            #11

            That has nothing to do with your error. You were using a Qt build that was not for Android, likely your desktop build.

            MinGW is unrelated to the Qt Android version. The compiler is provided by the Android NDK.

            Interested in AI ? www.idiap.ch
            Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

            1 Reply Last reply
            2
            • M Offline
              M Offline
              Mikeeeeee
              wrote on last edited by
              #12

              How to call a method in Qt from java SmsManager::createAppSpecificSmsTokenWithPackageinfo(String prefixes, PendingIntent intent)

              jsulmJ 1 Reply Last reply
              0
              • M Mikeeeeee

                How to call a method in Qt from java SmsManager::createAppSpecificSmsTokenWithPackageinfo(String prefixes, PendingIntent intent)

                jsulmJ Offline
                jsulmJ Offline
                jsulm
                Lifetime Qt Champion
                wrote on last edited by
                #13

                @Mikeeeeee Take a look at https://doc.qt.io/qt-5/qandroidjniobject.html

                https://forum.qt.io/topic/113070/qt-code-of-conduct

                1 Reply Last reply
                1
                • M Offline
                  M Offline
                  Mikeeeeee
                  wrote on last edited by
                  #14

                  Will this option work, or should we do it differently?

                      QAndroidJniObject testSms;
                      testSms.callMethod< jint > ("createAppSpecificSmsTokenWithPackageInfo(32133)");
                  
                  Pablo J. RoginaP JonBJ 2 Replies Last reply
                  0
                  • M Mikeeeeee

                    Will this option work, or should we do it differently?

                        QAndroidJniObject testSms;
                        testSms.callMethod< jint > ("createAppSpecificSmsTokenWithPackageInfo(32133)");
                    
                    Pablo J. RoginaP Offline
                    Pablo J. RoginaP Offline
                    Pablo J. Rogina
                    wrote on last edited by
                    #15

                    @Mikeeeeee said in How to send SMS in android?:

                    Will this option work

                    Have you already tried? Trial and error is a way to learn...

                    Upvote the answer(s) that helped you solve the issue
                    Use "Topic Tools" button to mark your post as Solved
                    Add screenshots via postimage.org
                    Don't ask support requests via chat/PM. Please use the forum so others can benefit from the solution in the future

                    1 Reply Last reply
                    2
                    • M Offline
                      M Offline
                      Mikeeeeee
                      wrote on last edited by
                      #16

                      It doesn't work. How can this be fixed to work?

                      1 Reply Last reply
                      0
                      • M Mikeeeeee

                        Will this option work, or should we do it differently?

                            QAndroidJniObject testSms;
                            testSms.callMethod< jint > ("createAppSpecificSmsTokenWithPackageInfo(32133)");
                        
                        JonBJ Offline
                        JonBJ Offline
                        JonB
                        wrote on last edited by JonB
                        #17

                        @Mikeeeeee

                            QAndroidJniObject testSms;
                            testSms.callMethod< jint > ("createAppSpecificSmsTokenWithPackageInfo(32133)");
                        

                        With the warning that I know absolutely nothing about this:

                        You are using the overload https://doc.qt.io/qt-5/qandroidjniobject.html#callMethod, callMethod(const char *methodName). It may well be that methodName has to be a method name, "createAppSpecificSmsTokenWithPackageInfo(32133)" is a full function call. You may have to use overload https://doc.qt.io/qt-5/qandroidjniobject.html#callMethod-1, callMethod(const char *methodName, const char *sig, ...), and specify the function signature and pass 32133 as parameter, in order to call functions with parameters?

                        Have you/can you test if you can call a method which does not take any parameters, does that work OK?

                        1 Reply Last reply
                        2
                        • M Offline
                          M Offline
                          Mikeeeeee
                          wrote on last edited by
                          #18

                          The SmsManager class has a getcarrierconfigvalues() function without an argument.
                          This code also generates an error:

                              QAndroidJniObject testSms;
                              testSms.callMethod< jint > ("getCarrierConfigValues()");
                          
                          jsulmJ JonBJ 2 Replies Last reply
                          0
                          • M Mikeeeeee

                            The SmsManager class has a getcarrierconfigvalues() function without an argument.
                            This code also generates an error:

                                QAndroidJniObject testSms;
                                testSms.callMethod< jint > ("getCarrierConfigValues()");
                            
                            jsulmJ Offline
                            jsulmJ Offline
                            jsulm
                            Lifetime Qt Champion
                            wrote on last edited by
                            #19

                            @Mikeeeeee said in How to send SMS in android?:

                            generates an error

                            Please post the error

                            https://forum.qt.io/topic/113070/qt-code-of-conduct

                            1 Reply Last reply
                            1
                            • M Offline
                              M Offline
                              Mikeeeeee
                              wrote on last edited by
                              #20

                              "org.qt project.example.smsTest" crashed.

                              jsulmJ KroMignonK 2 Replies Last reply
                              0
                              • M Mikeeeeee

                                "org.qt project.example.smsTest" crashed.

                                jsulmJ Offline
                                jsulmJ Offline
                                jsulm
                                Lifetime Qt Champion
                                wrote on last edited by
                                #21

                                @Mikeeeeee Does it crash when

                                testSms.callMethod< jint > ("getCarrierConfigValues()");
                                

                                is executed?
                                Also consider that some APIs require your app to request access rights from the user.

                                https://forum.qt.io/topic/113070/qt-code-of-conduct

                                1 Reply Last reply
                                1
                                • M Mikeeeeee

                                  "org.qt project.example.smsTest" crashed.

                                  KroMignonK Offline
                                  KroMignonK Offline
                                  KroMignon
                                  wrote on last edited by
                                  #22

                                  @Mikeeeeee If you remove all the "SMS sending" stuff from your source code, does it compile and can you start it on your device (or emulator) ?

                                  It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. (Sherlock Holmes)

                                  1 Reply Last reply
                                  0
                                  • KroMignonK Offline
                                    KroMignonK Offline
                                    KroMignon
                                    wrote on last edited by KroMignon
                                    #23

                                    @Mikeeeeee When you have a working Qt Android App, adding SMS sending support is not that compilcated.

                                    1. ensure Android Extras are enabled (in pro file, add android: QT += androidextras)
                                    2. ensure you have add required permission in AndroidManifest.xml (android.permission.SEND_SMS )
                                    3. Add following code to the class you want to use to send SMS, for example JniHandler:
                                    #include <QtAndroid>
                                    #include <QAndroidJniObject>
                                    #include <QtAndroidExtras/QAndroidJniObject>
                                    #include <QtAndroidExtras/QAndroidJniEnvironment>
                                    #include <jni.h>
                                    ...
                                    
                                    void JniHandler::sendSMS(const QString& phoneNumber, const QString& message)
                                    {
                                        QtAndroid::runOnAndroidThreadSync([phoneNumber, message]  {
                                            // get the Qt android activity
                                            QAndroidJniObject activity = QtAndroid::androidActivity();
                                            if (activity.isValid()){
                                                // get the default SmsManager
                                                QAndroidJniObject mySmsManager = QAndroidJniObject::callStaticObjectMethod("android/telephony/SmsManager",
                                                                                                                           "getDefault",
                                                                                                                           "()Landroid/telephony/SmsManager;" );
                                                // get phone number & text from UI and convert to Java String
                                                QAndroidJniObject myPhoneNumber = QAndroidJniObject::fromString(phoneNumber);
                                                QAndroidJniObject myTextMessage = QAndroidJniObject::fromString(message);
                                                QAndroidJniObject scAddress = NULL;
                                                QAndroidJniObject sentIntent = NULL;
                                                QAndroidJniObject deliveryIntent = NULL;
                                            
                                                // call the java function:
                                                // public void SmsManager.sendTextMessage(String destinationAddress,
                                                //                                        String scAddress, String text,
                                                //                                        PendingIntent sentIntent, PendingIntent deliveryIntent)
                                                // see: http://developer.android.com/reference/android/telephony/SmsManager.html
                                            
                                                mySmsManager.callMethod<void>("sendTextMessage",
                                                                              "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Landroid/app/PendingIntent;Landroid/app/PendingIntent;)V",
                                                                               myPhoneNumber.object<jstring>(),
                                                                               scAddress.object<jstring>(),
                                                                               myTextMessage.object<jstring>(), NULL, NULL );
                                            
                                                  }
                                            else {
                                                qDebug() << "Something wrong with Qt activity...";
                                            }
                                        }
                                    }
                                    

                                    This should do the job.

                                    It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. (Sherlock Holmes)

                                    1 Reply Last reply
                                    4
                                    • M Offline
                                      M Offline
                                      Mikeeeeee
                                      wrote on last edited by
                                      #24

                                      @KroMignon said in How to send SMS in android?:

                                      android.permission.SEND_SMS

                                      android.permission.SEND_SMS must be added to .pro file?

                                      KroMignonK 1 Reply Last reply
                                      0
                                      • M Mikeeeeee

                                        @KroMignon said in How to send SMS in android?:

                                        android.permission.SEND_SMS

                                        android.permission.SEND_SMS must be added to .pro file?

                                        KroMignonK Offline
                                        KroMignonK Offline
                                        KroMignon
                                        wrote on last edited by
                                        #25

                                        @Mikeeeeee said in How to send SMS in android?:

                                        android.permission.SEND_SMS must be added to .pro file?

                                        No, it must be added into the manifest (AndroidManifest.xml) ==> editing-manifest-files

                                        It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. (Sherlock Holmes)

                                        1 Reply Last reply
                                        2
                                        • M Offline
                                          M Offline
                                          Mikeeeeee
                                          wrote on last edited by
                                          #26

                                          Void MainWindow::sendSMS is missing ")". Added so and still not working. What's right?

                                          void MainWindow::sendSMS(const QString& phoneNumber, const QString& message)
                                          {
                                              QtAndroid::runOnAndroidThreadSync([phoneNumber, message]  {
                                                  // get the Qt android activity
                                                  QAndroidJniObject activity = QtAndroid::androidActivity();
                                                  if (activity.isValid()){
                                                      // get the default SmsManager
                                                      QAndroidJniObject mySmsManager = QAndroidJniObject::callStaticObjectMethod("android/telephony/SmsManager",
                                                                                                                                 "getDefault",
                                                                                                                                 "()Landroid/telephony/SmsManager;" );
                                                      // get phone number & text from UI and convert to Java String
                                                      QAndroidJniObject myPhoneNumber = QAndroidJniObject::fromString(phoneNumber);
                                                      QAndroidJniObject myTextMessage = QAndroidJniObject::fromString(message);
                                                      QAndroidJniObject scAddress = NULL;
                                                      QAndroidJniObject sentIntent = NULL;
                                                      QAndroidJniObject deliveryIntent = NULL;
                                          
                                                      // call the java function:
                                                      // public void SmsManager.sendTextMessage(String destinationAddress,
                                                      //                                        String scAddress, String text,
                                                      //                                        PendingIntent sentIntent, PendingIntent deliveryIntent)
                                                      // see: http://developer.android.com/reference/android/telephony/SmsManager.html
                                          
                                                      mySmsManager.callMethod<void>("sendTextMessage",
                                                                                    "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Landroid/app/PendingIntent;Landroid/app/PendingIntent;)V",
                                                                                     myPhoneNumber.object<jstring>(),
                                                                                     scAddress.object<jstring>(),
                                                                                     myTextMessage.object<jstring>(), NULL, NULL );
                                          
                                                        }
                                                  else {
                                                      qDebug() << "Something wrong with Qt activity...";
                                                  }
                                              });
                                          }
                                          
                                          KroMignonK 1 Reply Last reply
                                          0

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved