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,45 @@
package com.helpshift.poller;
/* loaded from: classes3.dex */
public class ExponentialBackoff {
public int baseInterval;
public int currentInterval;
public int maxInterval;
public int nextInterval(int i) {
if (i == 0) {
return this.currentInterval;
}
if ((i < 200 || i >= 400) && i < 500) {
this.currentInterval = -1;
} else {
int i2 = this.currentInterval;
int i3 = i2 * 2;
int i4 = this.maxInterval;
if (i3 <= i4) {
i4 = i2 * 2;
}
this.currentInterval = i4;
}
return this.currentInterval;
}
public void reconcileIntervals(int i, int i2) {
if (this.baseInterval == i && this.maxInterval == i2) {
return;
}
this.baseInterval = i;
this.maxInterval = i2;
this.currentInterval = i;
}
public void reset() {
this.currentInterval = this.baseInterval;
}
public ExponentialBackoff(int i, int i2) {
this.baseInterval = i;
this.maxInterval = i2;
this.currentInterval = i;
}
}