Sending SMS in Android

Description
The app is capable of composing short message service (sms), putting receiver mobile number and it allows to send sms.
How it works?
Here is a sample code snippet that might help:
SmsManager sms=SmsManager.getDefault();
String des= txtPno.getText().ToString(); //Mobile nos.
String msg= txtMsg.getText().ToString();    //Sms content
sms.sendTextMessage(des,null,msg,null,null);
Add permission to AndroidManifest.xml:
<uses-permission android:name="android.permission.SEND_SMS"/>
Instructions
  1. Download and Extract SirsuspectSMS.zip
  2. Locate bin folder inside the extracted file, then copy SirsuspectSMS.apk to your device storage
  3. Install
Screenshots

Programming Language: Java + XML
Click Contact Us to request the source code