summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/StartupReceiver.java
blob: 4499917f027d66751431bb621c19fa0168796779 (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 SYESTEM_READY = "com.android.launcher3.SYESTEM_READY";

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