Showing icons for apps on sdcard which are not available during system boot.

issue 15852084

Change-Id: I1e6f59a413581ae3af4219ab32cb5af3d726d382
This commit is contained in:
Sunny Goyal
2014-07-08 13:01:29 -07:00
parent bb474f6df0
commit f599ccfe96
3 changed files with 121 additions and 29 deletions

View File

@@ -0,0 +1,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));
}
}