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,60 @@
package com.applovin.impl;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Handler;
/* loaded from: classes.dex */
final class m1 {
private final Context a;
private final a b;
private boolean c;
public interface b {
void c();
}
public m1(Context context, Handler handler, b bVar) {
this.a = context.getApplicationContext();
this.b = new a(handler, bVar);
}
public final class a extends BroadcastReceiver implements Runnable {
private final b a;
private final Handler b;
public a(Handler handler, b bVar) {
this.b = handler;
this.a = bVar;
}
@Override // android.content.BroadcastReceiver
public void onReceive(Context context, Intent intent) {
if ("android.media.AUDIO_BECOMING_NOISY".equals(intent.getAction())) {
this.b.post(this);
}
}
@Override // java.lang.Runnable
public void run() {
if (m1.this.c) {
this.a.c();
}
}
}
public void a(boolean z) {
if (z && !this.c) {
this.a.registerReceiver(this.b, new IntentFilter("android.media.AUDIO_BECOMING_NOISY"));
this.c = true;
} else {
if (z || !this.c) {
return;
}
this.a.unregisterReceiver(this.b);
this.c = false;
}
}
}