- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
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");
|
|
}
|
|
}
|