This commit is contained in:
Max Kellermann 2023-12-28 21:02:49 +01:00
commit 09a0f7a45c
2 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ android {
targetCompatibility = JavaVersion.VERSION_1_9
}
kotlinOptions {
jvmTarget = "1.9"
jvmTarget = "9"
}
packaging {
resources {

View File

@ -20,9 +20,9 @@ public class Receiver extends BroadcastReceiver {
@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,
if (BOOT_ACTIONS.contains(intent.getAction())) {
if (Preferences.getBoolean(context,
Preferences.KEY_RUN_ON_BOOT,
false)) {
final boolean wakelock =
Preferences.getBoolean(context,