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,61 @@
package com.google.android.gms.internal.measurement;
import android.content.ContentResolver;
import android.database.Cursor;
import androidx.annotation.Nullable;
import java.util.Map;
/* loaded from: classes3.dex */
public final class zzgb implements zzgd {
@Override // com.google.android.gms.internal.measurement.zzgd
@Nullable
public final String zza(ContentResolver contentResolver, String str) throws zzgg {
Cursor query = contentResolver.query(zzfv.zza, null, null, new String[]{str}, null);
try {
if (query == null) {
throw new zzgg("Failed to connect to GservicesProvider");
}
if (!query.moveToFirst()) {
query.close();
return null;
}
String string = query.getString(1);
query.close();
return string;
} catch (Throwable th) {
if (query != null) {
try {
query.close();
} catch (Throwable th2) {
th.addSuppressed(th2);
}
}
throw th;
}
}
@Override // com.google.android.gms.internal.measurement.zzgd
public final <T extends Map<String, String>> T zza(ContentResolver contentResolver, String[] strArr, zzge<T> zzgeVar) throws zzgg {
Cursor query = contentResolver.query(zzfv.zzb, null, null, strArr, null);
try {
if (query == null) {
throw new zzgg("Failed to connect to GservicesProvider");
}
T zza = zzgeVar.zza(query.getCount());
while (query.moveToNext()) {
zza.put(query.getString(0), query.getString(1));
}
query.close();
return zza;
} catch (Throwable th) {
if (query != null) {
try {
query.close();
} catch (Throwable th2) {
th.addSuppressed(th2);
}
}
throw th;
}
}
}