Skip to content

Instantly share code, notes, and snippets.

@albertcbraun
albertcbraun / SmsService.java
Last active October 14, 2017 18:30
Android service class which sends SMS messages through the system's SmsManager, waiting each time for the previous message to be sent. Also see related SO question: https://stackoverflow.com/questions/46571946/android-sending-many-multi-part-messages-will-miss-some-of-them
package com.albertcbraun.smstest;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.Build;
import android.os.IBinder;
import android.provider.Telephony;
import android.telephony.SmsManager;