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,57 @@
package com.applovin.impl;
import android.graphics.BitmapFactory;
import android.graphics.Shader;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.util.Base64;
import com.applovin.impl.sdk.utils.StringUtils;
import java.util.Collections;
import java.util.Map;
/* loaded from: classes.dex */
public class ea {
private final Map a;
private final com.applovin.impl.sdk.j b;
public String b() {
return "google watermark";
}
public ea(Map map, com.applovin.impl.sdk.j jVar) {
this.a = map == null ? Collections.emptyMap() : map;
this.b = jVar;
}
public Drawable a() {
Object obj = this.a.get("google_watermark");
if (!a(obj)) {
this.b.J();
if (com.applovin.impl.sdk.n.a()) {
this.b.J().b("GoogleWatermarkGenerator", "Unable to render invalid watermark: " + obj);
}
return null;
}
try {
byte[] decode = Base64.decode((String) obj, 0);
BitmapDrawable bitmapDrawable = new BitmapDrawable(com.applovin.impl.sdk.j.l().getResources(), BitmapFactory.decodeByteArray(decode, 0, decode.length));
Shader.TileMode tileMode = Shader.TileMode.REPEAT;
bitmapDrawable.setTileModeXY(tileMode, tileMode);
return bitmapDrawable;
} catch (Throwable th) {
this.b.J();
if (com.applovin.impl.sdk.n.a()) {
this.b.J().a("GoogleWatermarkGenerator", "Failed to render watermark", th);
}
return null;
}
}
public boolean c() {
return a(this.a.get("google_watermark"));
}
private boolean a(Object obj) {
return (obj instanceof String) && StringUtils.isValidString((String) obj);
}
}