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,52 @@
package com.ea.nimble.tracking;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/* loaded from: classes2.dex */
public class TrackingBaseSessionObject implements Externalizable {
private static final long serialVersionUID = 1;
public List<Map<String, String>> events;
public int repostCount;
public Map<String, Object> sessionData;
public TrackingBaseSessionObject() {
this.events = new ArrayList();
this.sessionData = new HashMap();
this.repostCount = 0;
}
public TrackingBaseSessionObject(Map<String, Object> map) {
this.events = new ArrayList();
this.sessionData = map;
this.repostCount = 0;
}
public int countOfEvents() {
List<Map<String, String>> list = this.events;
if (list == null) {
return 0;
}
return list.size();
}
@Override // java.io.Externalizable
public void writeExternal(ObjectOutput objectOutput) throws IOException {
objectOutput.writeObject(this.events);
objectOutput.writeObject(this.sessionData);
objectOutput.writeInt(this.repostCount);
}
@Override // java.io.Externalizable
public void readExternal(ObjectInput objectInput) throws IOException, ClassNotFoundException {
this.events = (List) objectInput.readObject();
this.sessionData = (Map) objectInput.readObject();
this.repostCount = objectInput.readInt();
}
}