Home | History | Annotate | Download | only in launcher3
      1 package com.android.launcher3;
      2 
      3 import android.content.BroadcastReceiver;
      4 import android.content.Context;
      5 import android.content.Intent;
      6 
      7 public class StartupReceiver extends BroadcastReceiver {
      8 
      9     static final String SYSTEM_READY = "com.android.launcher3.SYSTEM_READY";
     10 
     11     @Override
     12     public void onReceive(Context context, Intent intent) {
     13         context.sendStickyBroadcast(new Intent(SYSTEM_READY));
     14     }
     15 }
     16