blob: 65f913fdf75596fd9f9065cf0745a2f0ec383e46 [file] [log] [blame]
Sunny Goyalf599ccf2014-07-08 13:01:29 -07001package com.android.launcher3;
2
3import android.content.BroadcastReceiver;
4import android.content.Context;
5import android.content.Intent;
6
7public class StartupReceiver extends BroadcastReceiver {
8
Sunny Goyal05e318d2014-07-29 11:49:35 -07009 static final String SYSTEM_READY = "com.android.launcher3.SYSTEM_READY";
Sunny Goyalf599ccf2014-07-08 13:01:29 -070010
11 @Override
12 public void onReceive(Context context, Intent intent) {
Sunny Goyal05e318d2014-07-29 11:49:35 -070013 context.sendStickyBroadcast(new Intent(SYSTEM_READY));
Sunny Goyalf599ccf2014-07-08 13:01:29 -070014 }
15}