I tried popping a Toast when the user I getting an SMS message. for some reason, the Toast doesn't show I have every permission I need in the manifest file
the code:
public class IncomingSMS extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context,"don't let your SMS keep you away from your missions goal",Toast.LENGTH_LONG).show();
}
}