summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/StartupReceiver.java
blob: 65f913fdf75596fd9f9065cf0745a2f0ec383e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.android.launcher3;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

public class StartupReceiver extends BroadcastReceiver {

    static final String SYSTEM_READY = "com.android.launcher3.SYSTEM_READY";

    @Override
    public void onReceive(Context context, Intent intent) {
        context.sendStickyBroadcast(new Intent(SYSTEM_READY));
    }
}