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