Move boot to app

This commit is contained in:
M66B
2020-12-30 18:41:20 +01:00
parent 4f443358a3
commit 6629ad4273
2 changed files with 9 additions and 9 deletions

View File

@@ -26,16 +26,12 @@ import android.content.Intent;
public class ReceiverAutoStart extends BroadcastReceiver {
@Override
public void onReceive(final Context context, Intent intent) {
if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction()) ||
Intent.ACTION_MY_PACKAGE_REPLACED.equals(intent.getAction())) {
Log.i("Received " + intent);
Log.i("Received " + intent);
if (Intent.ACTION_MY_PACKAGE_REPLACED.equals(intent.getAction()))
ApplicationEx.upgrade(context);
if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction()))
; // handled by Application
ServiceSynchronize.boot(context);
ServiceSend.boot(context);
ServiceUI.boot(context);
}
if (Intent.ACTION_MY_PACKAGE_REPLACED.equals(intent.getAction()))
ApplicationEx.upgrade(context);
}
}