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,34 @@
package com.google.android.gms.internal.fido;
/* loaded from: classes3.dex */
public final class zzfk {
public static Object zza(Object obj, String str) {
if (obj != null) {
return obj;
}
throw new NullPointerException(str.concat(" must not be null"));
}
public static String zzb(String str) {
if (str.isEmpty()) {
throw new IllegalArgumentException("identifier must not be empty");
}
if (!zzc(str.charAt(0))) {
throw new IllegalArgumentException("identifier must start with an ASCII letter: ".concat(str));
}
for (int i = 1; i < str.length(); i++) {
char charAt = str.charAt(i);
if (!zzc(charAt) && ((charAt < '0' || charAt > '9') && charAt != '_')) {
throw new IllegalArgumentException("identifier must contain only ASCII letters, digits or underscore: ".concat(str));
}
}
return str;
}
private static boolean zzc(char c) {
if (c < 'a' || c > 'z') {
return c >= 'A' && c <= 'Z';
}
return true;
}
}