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,41 @@
package com.applovin.impl;
import android.text.TextUtils;
import com.applovin.impl.sdk.utils.JsonUtils;
import com.applovin.sdk.R;
import java.util.ArrayList;
import java.util.List;
import org.json.JSONArray;
import org.json.JSONObject;
/* loaded from: classes.dex */
public abstract class o4 {
public static List b(com.applovin.impl.sdk.j jVar) {
return a(R.raw.applovin_consent_flow_terms_of_service_and_privacy_policy, jVar);
}
public static List c(com.applovin.impl.sdk.j jVar) {
return a(R.raw.applovin_consent_flow_unified_cmp, jVar);
}
private static List a(int i, com.applovin.impl.sdk.j jVar) {
String a = yp.a(i, com.applovin.impl.sdk.j.l(), jVar);
if (!TextUtils.isEmpty(a)) {
JSONObject jsonObjectFromJsonString = JsonUtils.jsonObjectFromJsonString(a, null);
if (jsonObjectFromJsonString != null) {
JSONArray jSONArray = JsonUtils.getJSONArray(jsonObjectFromJsonString, "states", new JSONArray());
ArrayList arrayList = new ArrayList();
for (int i2 = 0; i2 < jSONArray.length(); i2++) {
arrayList.add(j4.a(JsonUtils.getJSONObject(jSONArray, i2, new JSONObject()), jVar));
}
return arrayList;
}
throw new IllegalStateException("Unable to parse consent flow data! Please ensure that the AppLovin SDK resources are bundled correctly!");
}
throw new IllegalStateException("Unable to retrieve consent flow data! Please ensure that the AppLovin SDK resources are bundled correctly!");
}
public static List a(com.applovin.impl.sdk.j jVar) {
return a(R.raw.applovin_consent_flow_privacy_policy, jVar);
}
}