blob: 75ce85c83657c9f096521b11c07f03f97e2b8611 [file] [log] [blame]
package com.fairphone.fplauncher3;
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));
}
}