Files
rr3-apk/decompiled/sources/com/google/android/gms/internal/ads/zzbyn.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

54 lines
1.6 KiB
Java

package com.google.android.gms.internal.ads;
import android.content.Context;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import androidx.annotation.GuardedBy;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
/* loaded from: classes3.dex */
final class zzbyn {
@GuardedBy("this")
private final Map zza = new HashMap();
@GuardedBy("this")
private final List zzb = new ArrayList();
private final Context zzc;
private final zzbxz zzd;
public zzbyn(Context context, zzbxz zzbxzVar) {
this.zzc = context;
this.zzd = zzbxzVar;
}
public final /* synthetic */ void zzb(Map map, SharedPreferences sharedPreferences, String str, String str2) {
if (map.containsKey(str) && ((Set) map.get(str)).contains(str2)) {
this.zzd.zzd();
}
}
public final synchronized void zzc(String str) {
try {
if (this.zza.containsKey(str)) {
return;
}
SharedPreferences defaultSharedPreferences = Objects.equals(str, "__default__") ? PreferenceManager.getDefaultSharedPreferences(this.zzc) : this.zzc.getSharedPreferences(str, 0);
zzbym zzbymVar = new zzbym(this, str);
this.zza.put(str, zzbymVar);
defaultSharedPreferences.registerOnSharedPreferenceChangeListener(zzbymVar);
} catch (Throwable th) {
throw th;
}
}
public final synchronized void zzd(zzbyl zzbylVar) {
this.zzb.add(zzbylVar);
}
}