summaryrefslogtreecommitdiff
path: root/src/com/android/stk/BootCompletedReceiver.java
diff options
context:
space:
mode:
authorWink Saville <wink@google.com>2014-10-17 15:23:05 -0700
committerWink Saville <wink@google.com>2014-10-20 10:37:11 -0700
commite68857da85f6fb0964da9d58a7cbfcc0348065c6 (patch)
tree85998dd915dc286cc77067cd69c3bf33acc82027 /src/com/android/stk/BootCompletedReceiver.java
parent201329761cb19876732c06403e3137c38ad06425 (diff)
downloadStk-e68857da85f6fb0964da9d58a7cbfcc0348065c6.tar.gz
STK App DSDS support
Change-Id: I8d0a9ac406327fa91d78119df2953a417b4e4cb6
Diffstat (limited to 'src/com/android/stk/BootCompletedReceiver.java')
-rw-r--r--src/com/android/stk/BootCompletedReceiver.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/com/android/stk/BootCompletedReceiver.java b/src/com/android/stk/BootCompletedReceiver.java
index 12cb32e..f11c4f3 100644
--- a/src/com/android/stk/BootCompletedReceiver.java
+++ b/src/com/android/stk/BootCompletedReceiver.java
@@ -20,6 +20,7 @@ import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
+import com.android.internal.telephony.cat.CatLog;
/**
* Boot completed receiver. used to reset the app install state every time the
@@ -27,6 +28,8 @@ import android.os.Bundle;
*
*/
public class BootCompletedReceiver extends BroadcastReceiver {
+ private static final String LOG_TAG = new Object(){}.getClass().getEnclosingClass().getName();
+
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
@@ -37,6 +40,7 @@ public class BootCompletedReceiver extends BroadcastReceiver {
args.putInt(StkAppService.OPCODE, StkAppService.OP_BOOT_COMPLETED);
context.startService(new Intent(context, StkAppService.class)
.putExtras(args));
+ CatLog.d(LOG_TAG, "[ACTION_BOOT_COMPLETED]");
}
}
-} \ No newline at end of file
+}