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,35 @@
package com.google.android.gms.internal.measurement;
import java.util.Iterator;
import java.util.NoSuchElementException;
/* loaded from: classes3.dex */
final class zzav implements Iterator<zzaq> {
private int zza = 0;
private final /* synthetic */ zzas zzb;
@Override // java.util.Iterator
public final /* synthetic */ zzaq next() {
String str;
int i = this.zza;
str = this.zzb.zza;
if (i >= str.length()) {
throw new NoSuchElementException();
}
int i2 = this.zza;
this.zza = i2 + 1;
return new zzas(String.valueOf(i2));
}
public zzav(zzas zzasVar) {
this.zzb = zzasVar;
}
@Override // java.util.Iterator
public final boolean hasNext() {
String str;
int i = this.zza;
str = this.zzb.zza;
return i < str.length();
}
}