98 lines
2.7 KiB
Java
98 lines
2.7 KiB
Java
|
package com.google.android.gms.internal.gtm;
|
||
|
|
||
|
import android.content.SharedPreferences;
|
||
|
import android.text.TextUtils;
|
||
|
import com.google.android.gms.analytics.zzk;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public final class zzcm extends zzan {
|
||
|
private SharedPreferences zzabv;
|
||
|
private long zzabw;
|
||
|
private long zzabx;
|
||
|
private final zzco zzaby;
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: protected */
|
||
|
public zzcm(zzap zzapVar) {
|
||
|
super(zzapVar);
|
||
|
this.zzabx = -1L;
|
||
|
this.zzaby = new zzco(this, "monitoring", zzby.zzaao.get().longValue());
|
||
|
}
|
||
|
|
||
|
@Override // com.google.android.gms.internal.gtm.zzan
|
||
|
protected final void zzaw() {
|
||
|
this.zzabv = getContext().getSharedPreferences("com.google.android.gms.analytics.prefs", 0);
|
||
|
}
|
||
|
|
||
|
public final long zzfv() {
|
||
|
zzk.zzav();
|
||
|
zzdb();
|
||
|
if (this.zzabw == 0) {
|
||
|
long j = this.zzabv.getLong("first_run", 0L);
|
||
|
if (j != 0) {
|
||
|
this.zzabw = j;
|
||
|
} else {
|
||
|
long currentTimeMillis = zzcn().currentTimeMillis();
|
||
|
SharedPreferences.Editor edit = this.zzabv.edit();
|
||
|
edit.putLong("first_run", currentTimeMillis);
|
||
|
if (!edit.commit()) {
|
||
|
zzt("Failed to commit first run time");
|
||
|
}
|
||
|
this.zzabw = currentTimeMillis;
|
||
|
}
|
||
|
}
|
||
|
return this.zzabw;
|
||
|
}
|
||
|
|
||
|
public final zzcv zzfw() {
|
||
|
return new zzcv(zzcn(), zzfv());
|
||
|
}
|
||
|
|
||
|
public final long zzfx() {
|
||
|
zzk.zzav();
|
||
|
zzdb();
|
||
|
if (this.zzabx == -1) {
|
||
|
this.zzabx = this.zzabv.getLong("last_dispatch", 0L);
|
||
|
}
|
||
|
return this.zzabx;
|
||
|
}
|
||
|
|
||
|
public final void zzfy() {
|
||
|
zzk.zzav();
|
||
|
zzdb();
|
||
|
long currentTimeMillis = zzcn().currentTimeMillis();
|
||
|
SharedPreferences.Editor edit = this.zzabv.edit();
|
||
|
edit.putLong("last_dispatch", currentTimeMillis);
|
||
|
edit.apply();
|
||
|
this.zzabx = currentTimeMillis;
|
||
|
}
|
||
|
|
||
|
public final String zzfz() {
|
||
|
zzk.zzav();
|
||
|
zzdb();
|
||
|
String string = this.zzabv.getString("installation_campaign", null);
|
||
|
if (TextUtils.isEmpty(string)) {
|
||
|
return null;
|
||
|
}
|
||
|
return string;
|
||
|
}
|
||
|
|
||
|
public final void zzad(String str) {
|
||
|
zzk.zzav();
|
||
|
zzdb();
|
||
|
SharedPreferences.Editor edit = this.zzabv.edit();
|
||
|
if (TextUtils.isEmpty(str)) {
|
||
|
edit.remove("installation_campaign");
|
||
|
} else {
|
||
|
edit.putString("installation_campaign", str);
|
||
|
}
|
||
|
if (edit.commit()) {
|
||
|
return;
|
||
|
}
|
||
|
zzt("Failed to commit campaign data");
|
||
|
}
|
||
|
|
||
|
public final zzco zzga() {
|
||
|
return this.zzaby;
|
||
|
}
|
||
|
}
|