mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-02 08:56:55 +00:00
Showing icons for apps on sdcard which are not available during system boot.
issue 15852084 Change-Id: I1e6f59a413581ae3af4219ab32cb5af3d726d382
This commit is contained in:
15
src/com/android/launcher3/StartupReceiver.java
Normal file
15
src/com/android/launcher3/StartupReceiver.java
Normal 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));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user