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,74 @@
package com.ea.nimble.pushtng;
import com.ea.eadp.http.models.HttpResponse;
import com.ea.nimble.Log;
import java.util.Map;
/* loaded from: classes2.dex */
public class NimbleAndroidHttpResponse implements HttpResponse {
private String body;
private int code;
private Map<String, String> headers;
private String message;
private String url;
@Override // com.ea.eadp.http.models.HttpResponse
public String getUrl() {
Log.Helper.LOGPUBLICFUNC(this);
return this.url;
}
@Override // com.ea.eadp.http.models.HttpResponse
public void setUrl(String str) {
Log.Helper.LOGPUBLICFUNC(this);
this.url = str;
}
@Override // com.ea.eadp.http.models.HttpResponse
public int getCode() {
Log.Helper.LOGPUBLICFUNC(this);
return this.code;
}
@Override // com.ea.eadp.http.models.HttpResponse
public void setCode(int i) {
Log.Helper.LOGPUBLICFUNC(this);
this.code = i;
}
@Override // com.ea.eadp.http.models.HttpResponse
public String getMessage() {
Log.Helper.LOGPUBLICFUNC(this);
return this.message;
}
@Override // com.ea.eadp.http.models.HttpResponse
public void setMessage(String str) {
Log.Helper.LOGPUBLICFUNC(this);
this.message = str;
}
@Override // com.ea.eadp.http.models.HttpResponse
public String getBody() {
Log.Helper.LOGPUBLICFUNC(this);
return this.body;
}
@Override // com.ea.eadp.http.models.HttpResponse
public void setBody(String str) {
Log.Helper.LOGPUBLICFUNC(this);
this.body = str;
}
@Override // com.ea.eadp.http.models.HttpResponse
public Map<String, String> getHeaders() {
Log.Helper.LOGPUBLICFUNC(this);
return this.headers;
}
@Override // com.ea.eadp.http.models.HttpResponse
public void setHeaders(Map<String, String> map) {
Log.Helper.LOGPUBLICFUNC(this);
this.headers = map;
}
}