- 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.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;
|
|
}
|
|
}
|