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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
package com.google.android.gms.internal.auth;
import android.content.Context;
import android.database.ContentObserver;
import android.util.Log;
import androidx.annotation.GuardedBy;
import androidx.core.content.PermissionChecker;
/* loaded from: classes3.dex */
final class zzco implements zzcl {
@GuardedBy("GservicesLoader.class")
private static zzco zza;
private final Context zzb;
private final ContentObserver zzc;
private zzco() {
this.zzb = null;
this.zzc = null;
}
private zzco(Context context) {
this.zzb = context;
zzcn zzcnVar = new zzcn(this, null);
this.zzc = zzcnVar;
context.getContentResolver().registerContentObserver(zzcb.zza, true, zzcnVar);
}
public static zzco zza(Context context) {
zzco zzcoVar;
synchronized (zzco.class) {
try {
if (zza == null) {
zza = PermissionChecker.checkSelfPermission(context, "com.google.android.providers.gsf.permission.READ_GSERVICES") == 0 ? new zzco(context) : new zzco();
}
zzcoVar = zza;
} catch (Throwable th) {
throw th;
}
}
return zzcoVar;
}
public static synchronized void zze() {
Context context;
synchronized (zzco.class) {
try {
zzco zzcoVar = zza;
if (zzcoVar != null && (context = zzcoVar.zzb) != null && zzcoVar.zzc != null) {
context.getContentResolver().unregisterContentObserver(zza.zzc);
}
zza = null;
} catch (Throwable th) {
throw th;
}
}
}
@Override // com.google.android.gms.internal.auth.zzcl
/* renamed from: zzc, reason: merged with bridge method [inline-methods] */
public final String zzb(final String str) {
Context context = this.zzb;
if (context != null && !zzcc.zza(context)) {
try {
return (String) zzcj.zza(new zzck() { // from class: com.google.android.gms.internal.auth.zzcm
@Override // com.google.android.gms.internal.auth.zzck
public final Object zza() {
return zzco.this.zzd(str);
}
});
} catch (IllegalStateException | NullPointerException | SecurityException e) {
Log.e("GservicesLoader", "Unable to read GServices for: ".concat(String.valueOf(str)), e);
}
}
return null;
}
public final /* synthetic */ String zzd(String str) {
return zzcb.zza(this.zzb.getContentResolver(), str, null);
}
}