I\'m rather new to Android. Im trying to send SMS from Android application. When using the SMS Intent the SMS window opens and the user needs to approve the SMS and send i
If your application has in the AndroidManifest.xml the following permission
you can send as many SMS as you want with
SmsManager manager = SmsManager.getDefault(); manager.sendTextMessage(...);
and that is all.