- 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
36 lines
1.3 KiB
Java
36 lines
1.3 KiB
Java
package com.google.firebase.perf.config;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class ConfigurationConstants$TraceEventCountBackground extends ConfigurationFlag {
|
|
public static ConfigurationConstants$TraceEventCountBackground instance;
|
|
|
|
@Override // com.google.firebase.perf.config.ConfigurationFlag
|
|
public String getDeviceCacheFlag() {
|
|
return "com.google.firebase.perf.TraceEventCountBackground";
|
|
}
|
|
|
|
@Override // com.google.firebase.perf.config.ConfigurationFlag
|
|
public String getRemoteConfigFlag() {
|
|
return "fpr_rl_trace_event_count_bg";
|
|
}
|
|
|
|
public static synchronized ConfigurationConstants$TraceEventCountBackground getInstance() {
|
|
ConfigurationConstants$TraceEventCountBackground configurationConstants$TraceEventCountBackground;
|
|
synchronized (ConfigurationConstants$TraceEventCountBackground.class) {
|
|
try {
|
|
if (instance == null) {
|
|
instance = new ConfigurationConstants$TraceEventCountBackground();
|
|
}
|
|
configurationConstants$TraceEventCountBackground = instance;
|
|
} catch (Throwable th) {
|
|
throw th;
|
|
}
|
|
}
|
|
return configurationConstants$TraceEventCountBackground;
|
|
}
|
|
|
|
public Long getDefault() {
|
|
return 30L;
|
|
}
|
|
}
|