I am trying generate SMS notification to application in android. I have a client application which is capable of generating the events, from the server side if i requesting to generate a SMS the client application will generate SMS in the phone.
How to do that, also i am new to android whether this is possible. i tried with the below sample code, i cant able to see any SMS notification. Please help me in this regard, Also thanks in advance for the helping hands.
SmsManager sms = SmsManager.getDefault();
ArrayList smstext = sms.divideMessage("asdfasdf");
sms.sendMultipartTextMessage("5554", null, smstext, null, null);
Thx,Krishna