Files
rr3-apk/decompiled-community/sources/com/google/firebase/perf/config/ConfigurationConstants$NetworkEventCountBackground.java
Daniel Elliott c080f0d97f 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
2026-02-18 15:48:36 -08:00

36 lines
1.3 KiB
Java

package com.google.firebase.perf.config;
/* loaded from: classes3.dex */
public final class ConfigurationConstants$NetworkEventCountBackground extends ConfigurationFlag {
public static ConfigurationConstants$NetworkEventCountBackground instance;
@Override // com.google.firebase.perf.config.ConfigurationFlag
public String getDeviceCacheFlag() {
return "com.google.firebase.perf.NetworkEventCountBackground";
}
@Override // com.google.firebase.perf.config.ConfigurationFlag
public String getRemoteConfigFlag() {
return "fpr_rl_network_event_count_bg";
}
public static synchronized ConfigurationConstants$NetworkEventCountBackground getInstance() {
ConfigurationConstants$NetworkEventCountBackground configurationConstants$NetworkEventCountBackground;
synchronized (ConfigurationConstants$NetworkEventCountBackground.class) {
try {
if (instance == null) {
instance = new ConfigurationConstants$NetworkEventCountBackground();
}
configurationConstants$NetworkEventCountBackground = instance;
} catch (Throwable th) {
throw th;
}
}
return configurationConstants$NetworkEventCountBackground;
}
public Long getDefault() {
return 70L;
}
}