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,36 @@
package com.google.ads.mediation.admob;
import android.os.Bundle;
import android.text.TextUtils;
import androidx.annotation.Keep;
import androidx.annotation.NonNull;
import com.google.ads.mediation.AbstractAdViewAdapter;
@Keep
/* loaded from: classes2.dex */
public final class AdMobAdapter extends AbstractAdViewAdapter {
static final String AD_JSON_PARAMETER = "adJson";
static final String AD_PARAMETER = "_ad";
static final String HOUSE_ADS_PARAMETER = "mad_hac";
@NonNull
public static final String NEW_BUNDLE = "_newBundle";
@Override // com.google.ads.mediation.AbstractAdViewAdapter
@NonNull
public Bundle buildExtrasBundle(@NonNull Bundle bundle, @NonNull Bundle bundle2) {
if (bundle == null) {
bundle = new Bundle();
}
if (bundle.getBoolean(NEW_BUNDLE)) {
bundle = new Bundle(bundle);
}
bundle.putInt("gw", 1);
bundle.putString(HOUSE_ADS_PARAMETER, bundle2.getString(HOUSE_ADS_PARAMETER));
if (!TextUtils.isEmpty(bundle2.getString(AD_JSON_PARAMETER))) {
bundle.putString(AD_PARAMETER, bundle2.getString(AD_JSON_PARAMETER));
}
bundle.putBoolean("_noRefresh", true);
return bundle;
}
}