- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
26 lines
749 B
Java
26 lines
749 B
Java
package com.firemint.realracing;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class BootReceiver extends BroadcastReceiver {
|
|
public static void Log(String str) {
|
|
}
|
|
|
|
@Override // android.content.BroadcastReceiver
|
|
public void onReceive(Context context, Intent intent) {
|
|
Log("onReceive");
|
|
if (AppProxy.GetContext() == null) {
|
|
Log("resumeNotification");
|
|
AppProxy.SetContext(context);
|
|
LocalNotificationsCenter.LoadNotifications(true);
|
|
AppProxy.SetContext(null);
|
|
} else {
|
|
Log("gameHasStarted, aborting");
|
|
}
|
|
Log("onReceive done");
|
|
}
|
|
}
|