2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2014-10-18 19:02:23 +02:00
|
|
|
|
|
|
|
package org.musicpd;
|
|
|
|
|
|
|
|
import android.content.BroadcastReceiver;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
public class Receiver extends BroadcastReceiver {
|
2022-01-13 00:23:30 +01:00
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
|
|
|
Log.d("Receiver", "onReceive: " + intent);
|
|
|
|
if (intent.getAction() == "android.intent.action.BOOT_COMPLETED") {
|
|
|
|
if (Settings.Preferences.getBoolean(context,
|
|
|
|
Settings.Preferences.KEY_RUN_ON_BOOT,
|
|
|
|
false)) {
|
|
|
|
final boolean wakelock =
|
|
|
|
Settings.Preferences.getBoolean(context,
|
|
|
|
Settings.Preferences.KEY_WAKELOCK, false);
|
|
|
|
Main.start(context, wakelock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-10-18 19:02:23 +02:00
|
|
|
}
|