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,47 @@
package com.google.firebase.remoteconfig;
import com.google.firebase.remoteconfig.internal.ConfigFetchHandler;
/* loaded from: classes3.dex */
public class FirebaseRemoteConfigSettings {
public final long fetchTimeoutInSeconds;
public final long minimumFetchInterval;
public long getFetchTimeoutInSeconds() {
return this.fetchTimeoutInSeconds;
}
public long getMinimumFetchIntervalInSeconds() {
return this.minimumFetchInterval;
}
public FirebaseRemoteConfigSettings(Builder builder) {
this.fetchTimeoutInSeconds = builder.fetchTimeoutInSeconds;
this.minimumFetchInterval = builder.minimumFetchInterval;
}
public static class Builder {
public long fetchTimeoutInSeconds = 60;
public long minimumFetchInterval = ConfigFetchHandler.DEFAULT_MINIMUM_FETCH_INTERVAL_IN_SECONDS;
public Builder setFetchTimeoutInSeconds(long j) {
if (j < 0) {
throw new IllegalArgumentException(String.format("Fetch connection timeout has to be a non-negative number. %d is an invalid argument", Long.valueOf(j)));
}
this.fetchTimeoutInSeconds = j;
return this;
}
public Builder setMinimumFetchIntervalInSeconds(long j) {
if (j >= 0) {
this.minimumFetchInterval = j;
return this;
}
throw new IllegalArgumentException("Minimum interval between fetches has to be a non-negative number. " + j + " is an invalid argument");
}
public FirebaseRemoteConfigSettings build() {
return new FirebaseRemoteConfigSettings(this);
}
}
}