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,33 @@
package com.helpshift.network;
import java.util.Map;
/* loaded from: classes3.dex */
public class HSResponse {
public final Map headers;
public final String responseString;
public final int status;
public interface NetworkResponseCodes {
public static final Integer OK = 200;
public static final Integer CONTENT_UNCHANGED = 304;
public static final Integer OBJECT_NOT_FOUND = 400;
public static final Integer UNAUTHORIZED_ACCESS = 401;
public static final Integer AUTH_TOKEN_NOT_PROVIDED = 441;
public static final Integer INVALID_AUTH_TOKEN = 443;
}
public String getResponseString() {
return this.responseString;
}
public int getStatus() {
return this.status;
}
public HSResponse(int i, String str, Map map) {
this.status = i;
this.responseString = str;
this.headers = map;
}
}