|
|
@@ -0,0 +1,15 @@
|
|
|
+package com.example.zrat;
|
|
|
+
|
|
|
+import android.content.BroadcastReceiver;
|
|
|
+import android.content.Context;
|
|
|
+import android.content.Intent;
|
|
|
+
|
|
|
+public class MmsReceiver extends BroadcastReceiver {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void onReceive(Context context, Intent intent) {
|
|
|
+ // TODO: This method is called when the BroadcastReceiver is receiving
|
|
|
+ // an Intent broadcast.
|
|
|
+ throw new UnsupportedOperationException("Not yet implemented");
|
|
|
+ }
|
|
|
+}
|