Send sms on restarting android device.
Android
2
Posts
2
Posters
3
Views
1
Watching
-
I need to send sms while restarting android phone. Any idea to send sms on booting..? Thanks in advance :laugh:
-
I need to send sms while restarting android phone. Any idea to send sms on booting..? Thanks in advance :laugh:
You can do it by extending BroadcastReceiver.
public class MyBootReceiver extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{
// Your SMS logic
}
}Then you need to add android.permission.RECEIVE_BOOT_COMPLETED permission in Androidmanifest.xml as well as your BroadcastReceiver