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,46 @@
package com.google.android.gms.common.util;
import android.text.TextUtils;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/* loaded from: classes2.dex */
final class zzc {
private static final Pattern zza = Pattern.compile("\\\\u[0-9a-fA-F]{4}");
public static String zza(String str) {
if (TextUtils.isEmpty(str)) {
return str;
}
Matcher matcher = zza.matcher(str);
StringBuilder sb = null;
int i = 0;
while (matcher.find()) {
if (sb == null) {
sb = new StringBuilder();
}
int start = matcher.start();
int i2 = start;
while (i2 >= 0 && str.charAt(i2) == '\\') {
i2--;
}
if ((start - i2) % 2 != 0) {
int parseInt = Integer.parseInt(matcher.group().substring(2), 16);
sb.append((CharSequence) str, i, matcher.start());
if (parseInt == 92) {
sb.append("\\\\");
} else {
sb.append(Character.toChars(parseInt));
}
i = matcher.end();
}
}
if (sb == null) {
return str;
}
if (i < matcher.regionEnd()) {
sb.append((CharSequence) str, i, matcher.regionEnd());
}
return sb.toString();
}
}