Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,92 @@
package com.applovin.impl;
import android.content.Intent;
import android.content.IntentFilter;
import com.applovin.impl.sdk.AppLovinBroadcastManager;
import com.applovin.impl.sdk.SessionTracker;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.Timer;
import java.util.TimerTask;
/* loaded from: classes.dex */
public class hr {
private static final Set f = new HashSet();
private final boolean a;
private final com.applovin.impl.sdk.j b;
private Runnable c;
private final Object d = new Object();
private final Timer e;
private TimerTask b() {
return new a();
}
private hr(long j, boolean z, com.applovin.impl.sdk.j jVar, Runnable runnable) {
Timer timer = new Timer();
this.e = timer;
if (j < 0) {
throw new IllegalArgumentException("Cannot create wall clock timer. Invalid timer length: " + j);
}
if (jVar == null) {
throw new IllegalArgumentException("Cannot create wall clock timer. Sdk is null");
}
if (runnable != null) {
this.a = z;
this.b = jVar;
this.c = runnable;
f.add(this);
timer.schedule(b(), j);
return;
}
throw new IllegalArgumentException("Cannot create wall clock timer. Runnable is null.");
}
public class a extends TimerTask {
public a() {
}
@Override // java.util.TimerTask, java.lang.Runnable
public void run() {
if (!hr.this.b.f0().isApplicationPaused() || hr.this.a) {
hr.this.c();
} else {
AppLovinBroadcastManager.registerReceiver(new C0021a(), new IntentFilter(SessionTracker.ACTION_APPLICATION_RESUMED));
}
}
/* renamed from: com.applovin.impl.hr$a$a, reason: collision with other inner class name */
public class C0021a implements AppLovinBroadcastManager.Receiver {
public C0021a() {
}
@Override // com.applovin.impl.sdk.AppLovinBroadcastManager.Receiver
public void onReceive(Intent intent, Map map) {
AppLovinBroadcastManager.unregisterReceiver(this);
hr.this.c();
}
}
}
public void a() {
synchronized (this.d) {
this.e.cancel();
this.c = null;
f.remove(this);
}
}
public static hr a(long j, boolean z, com.applovin.impl.sdk.j jVar, Runnable runnable) {
return new hr(j, z, jVar, runnable);
}
/* JADX INFO: Access modifiers changed from: private */
public void c() {
Runnable runnable = this.c;
if (runnable != null) {
runnable.run();
a();
}
}
}