Unable to send sms using SMSManager in Android
问题 In my application I do not want to use the default message sender. For doing that I followed the following link In Android is it possible to send sms message to more than one recipient in code? And that code worked too. But the messages I am sending from this code are not saved on the phones outbox and inbox. I am using sms manager like this in my code SmsManager sms = SmsManager.getDefault(); sms.sendTextMessage(phoneNumber, null, message, null, null); But it is not sending sms.please help