- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
36 lines
1.2 KiB
Java
36 lines
1.2 KiB
Java
package com.google.firebase.perf.config;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class ConfigurationConstants$SdkEnabled extends ConfigurationFlag {
|
|
public static ConfigurationConstants$SdkEnabled instance;
|
|
|
|
public Boolean getDefault() {
|
|
return Boolean.TRUE;
|
|
}
|
|
|
|
@Override // com.google.firebase.perf.config.ConfigurationFlag
|
|
public String getDeviceCacheFlag() {
|
|
return "com.google.firebase.perf.SdkEnabled";
|
|
}
|
|
|
|
@Override // com.google.firebase.perf.config.ConfigurationFlag
|
|
public String getRemoteConfigFlag() {
|
|
return "fpr_enabled";
|
|
}
|
|
|
|
public static synchronized ConfigurationConstants$SdkEnabled getInstance() {
|
|
ConfigurationConstants$SdkEnabled configurationConstants$SdkEnabled;
|
|
synchronized (ConfigurationConstants$SdkEnabled.class) {
|
|
try {
|
|
if (instance == null) {
|
|
instance = new ConfigurationConstants$SdkEnabled();
|
|
}
|
|
configurationConstants$SdkEnabled = instance;
|
|
} catch (Throwable th) {
|
|
throw th;
|
|
}
|
|
}
|
|
return configurationConstants$SdkEnabled;
|
|
}
|
|
}
|