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