* Decompile and recreate Soul Browser v1.4.85 with APK CI builds Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix CI build: include bundled google.jks and remove PR trigger The apktool build failed in CI because app/unknown/.../google.jks was excluded by the *.jks gitignore rule. Whitelist app-bundled JKS files and commit the missing resource. Also remove the redundant pull_request workflow trigger. Co-authored-by: KaKi87 <KaKi87@pm.me> * Change package ID to com.github.kaki87.soulbrowser Rename the application ID so the rebuilt APK can be installed alongside the original Soul Browser from Google Play. - Update AndroidManifest package, permissions, providers, and actions - Update R class references in smali (com/github/kaki87/soulbrowser/R) - Update shortcuts.xml targetPackage - Rename app label to "Soul Rebuild" for easy identification Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix install compatibility: remove split APK metadata and bundle native libs The rebuilt APK still declared requiredSplitTypes and Play Store split metadata, causing Android to reject standalone installs as incompatible. - Remove requiredSplitTypes and split-related manifest meta-data - Merge native libs from all ABI splits with uncompressed storage - Page-align before signing for extractNativeLibs=false - Add .so to apktool doNotCompress list Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix install failure: use apksigner v2/v3 and bundle arm64 native libs Target SDK 36 requires APK Signature Scheme v2+, but jarsigner only produces v1 signatures, causing Android to reject the install. - Sign with apksigner (v1+v2+v3) instead of jarsigner - Add arm64-v8a native libraries from universal Soul Browser 1.4.79 - Set extractNativeLibs=true for reliable sideload installs - Commit stable debug keystore for consistent signatures across builds Co-authored-by: KaKi87 <KaKi87@pm.me> * Add committed debug keystore for consistent APK signatures Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix startup crash: use original classes2.dex desugar libraries Apktool recompiles smali_classes2 into a broken classes2.dex, causing ClassNotFoundException for j$.com.android.tools.r8.a at ML Kit init. Inject the original classes2.dex (Java 8+ desugar libs) after apktool build instead of using the recompiled version. Co-authored-by: KaKi87 <KaKi87@pm.me> * Fix missing drawable resources from density split APKs The base APK is an app bundle module; density-specific drawables like seek_thumb_nor_b live in config.xhdpi.apk and were missing after rebuild, causing Resources$NotFoundException at runtime. - Merge non-9-patch resources from split APKs before apktool build - Sync public.xml IDs from R smali only when backing files exist - Add 713 density-specific resource IDs to public.xml Co-authored-by: KaKi87 <KaKi87@pm.me> --------- Co-authored-by: Cursor Agent <cursoragent@cursor.com>
325 lines
11 KiB
Java
325 lines
11 KiB
Java
package org.apache.commons.text;
|
|
|
|
import com.google.android.gms.ads.RequestConfiguration;
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
import java.util.ListIterator;
|
|
import java.util.NoSuchElementException;
|
|
import org.apache.commons.lang3.ArrayUtils;
|
|
import org.apache.commons.text.matcher.AbstractStringMatcher;
|
|
import org.apache.commons.text.matcher.StringMatcher;
|
|
import org.apache.commons.text.matcher.StringMatcherFactory;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public class StringTokenizer implements ListIterator<String>, Cloneable {
|
|
|
|
/* renamed from: c, reason: collision with root package name */
|
|
public char[] f22473c;
|
|
public String[] f;
|
|
public int g;
|
|
public StringMatcher h;
|
|
public StringMatcher i;
|
|
public StringMatcher j;
|
|
public StringMatcher k;
|
|
public boolean l;
|
|
|
|
static {
|
|
StringTokenizer stringTokenizer = new StringTokenizer();
|
|
stringTokenizer.h = StringMatcherFactory.f22494a;
|
|
AbstractStringMatcher.CharMatcher charMatcher = StringMatcherFactory.b;
|
|
stringTokenizer.i = charMatcher;
|
|
AbstractStringMatcher.NoneMatcher noneMatcher = StringMatcherFactory.f22495c;
|
|
stringTokenizer.j = noneMatcher;
|
|
AbstractStringMatcher.TrimMatcher trimMatcher = StringMatcherFactory.f;
|
|
if (trimMatcher != null) {
|
|
stringTokenizer.k = trimMatcher;
|
|
}
|
|
stringTokenizer.l = false;
|
|
StringTokenizer stringTokenizer2 = new StringTokenizer();
|
|
StringMatcher stringMatcher = StringMatcherFactory.e;
|
|
if (stringMatcher == null) {
|
|
stringMatcher = noneMatcher;
|
|
}
|
|
stringTokenizer2.h = stringMatcher;
|
|
stringTokenizer2.i = charMatcher;
|
|
stringTokenizer2.j = noneMatcher;
|
|
if (trimMatcher != null) {
|
|
stringTokenizer2.k = trimMatcher;
|
|
}
|
|
stringTokenizer2.l = false;
|
|
}
|
|
|
|
public StringTokenizer() {
|
|
AbstractStringMatcher.CharMatcher charMatcher = StringMatcherFactory.f22494a;
|
|
this.h = StringMatcherFactory.d;
|
|
AbstractStringMatcher.NoneMatcher noneMatcher = StringMatcherFactory.f22495c;
|
|
this.i = noneMatcher;
|
|
this.j = noneMatcher;
|
|
this.k = noneMatcher;
|
|
this.l = true;
|
|
this.f22473c = null;
|
|
}
|
|
|
|
public static boolean c(char[] cArr, int i, int i2, int i3, int i4) {
|
|
for (int i5 = 0; i5 < i4; i5++) {
|
|
int i6 = i + i5;
|
|
if (i6 >= i2 || cArr[i6] != cArr[i3 + i5]) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
public final void a(ArrayList arrayList, String str) {
|
|
if (str.isEmpty() && this.l) {
|
|
return;
|
|
}
|
|
arrayList.add(str);
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final void add(String str) {
|
|
throw new UnsupportedOperationException("add() is unsupported");
|
|
}
|
|
|
|
public final void b() {
|
|
List e;
|
|
if (this.f == null) {
|
|
char[] cArr = this.f22473c;
|
|
if (cArr == null) {
|
|
e = e(null, 0);
|
|
} else {
|
|
e = e(cArr, cArr.length);
|
|
}
|
|
this.f = (String[]) e.toArray(ArrayUtils.b);
|
|
}
|
|
}
|
|
|
|
public final Object clone() {
|
|
try {
|
|
StringTokenizer stringTokenizer = (StringTokenizer) super.clone();
|
|
char[] cArr = stringTokenizer.f22473c;
|
|
if (cArr != null) {
|
|
stringTokenizer.f22473c = (char[]) cArr.clone();
|
|
}
|
|
stringTokenizer.g = 0;
|
|
stringTokenizer.f = null;
|
|
return stringTokenizer;
|
|
} catch (CloneNotSupportedException unused) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public final int d(char[] cArr, int i, int i2, TextStringBuilder textStringBuilder, ArrayList arrayList, int i3, int i4) {
|
|
boolean z;
|
|
textStringBuilder.f = 0;
|
|
if (i4 > 0) {
|
|
z = true;
|
|
} else {
|
|
z = false;
|
|
}
|
|
int i5 = 0;
|
|
while (i < i2) {
|
|
if (z) {
|
|
if (c(cArr, i, i2, i3, i4)) {
|
|
int i6 = i + i4;
|
|
if (c(cArr, i6, i2, i3, i4)) {
|
|
textStringBuilder.b(cArr, i, i4);
|
|
i += i4 * 2;
|
|
i5 = textStringBuilder.f;
|
|
} else {
|
|
z = false;
|
|
i = i6;
|
|
}
|
|
} else {
|
|
int i7 = i + 1;
|
|
char c2 = cArr[i];
|
|
textStringBuilder.c(textStringBuilder.f + 1);
|
|
char[] cArr2 = textStringBuilder.f22474c;
|
|
int i8 = textStringBuilder.f;
|
|
int i9 = i8 + 1;
|
|
textStringBuilder.f = i9;
|
|
cArr2[i8] = c2;
|
|
i = i7;
|
|
i5 = i9;
|
|
}
|
|
} else {
|
|
int a2 = this.h.a(cArr, i, i2);
|
|
if (a2 > 0) {
|
|
int i10 = textStringBuilder.f;
|
|
if (i5 > i10) {
|
|
i5 = i10;
|
|
}
|
|
if (i5 >= 0) {
|
|
a(arrayList, new String(textStringBuilder.f22474c, 0, i5));
|
|
return i + a2;
|
|
}
|
|
throw new StringIndexOutOfBoundsException("end < start");
|
|
}
|
|
if (i4 > 0 && c(cArr, i, i2, i3, i4)) {
|
|
i += i4;
|
|
z = true;
|
|
} else {
|
|
int a3 = this.j.a(cArr, i, i2);
|
|
if (a3 <= 0) {
|
|
a3 = this.k.a(cArr, i, i2);
|
|
if (a3 > 0) {
|
|
textStringBuilder.b(cArr, i, a3);
|
|
} else {
|
|
int i72 = i + 1;
|
|
char c22 = cArr[i];
|
|
textStringBuilder.c(textStringBuilder.f + 1);
|
|
char[] cArr22 = textStringBuilder.f22474c;
|
|
int i82 = textStringBuilder.f;
|
|
int i92 = i82 + 1;
|
|
textStringBuilder.f = i92;
|
|
cArr22[i82] = c22;
|
|
i = i72;
|
|
i5 = i92;
|
|
}
|
|
}
|
|
i += a3;
|
|
}
|
|
}
|
|
}
|
|
int i11 = textStringBuilder.f;
|
|
if (i5 > i11) {
|
|
i5 = i11;
|
|
}
|
|
if (i5 >= 0) {
|
|
a(arrayList, new String(textStringBuilder.f22474c, 0, i5));
|
|
return -1;
|
|
}
|
|
throw new StringIndexOutOfBoundsException("end < start");
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
/* JADX WARN: Type inference failed for: r4v0, types: [org.apache.commons.text.TextStringBuilder, java.lang.Object] */
|
|
public List e(char[] cArr, int i) {
|
|
char[] cArr2;
|
|
int i2;
|
|
int d;
|
|
if (cArr != null && i != 0) {
|
|
?? obj = new Object();
|
|
obj.f22474c = new char[32];
|
|
ArrayList arrayList = new ArrayList();
|
|
int i3 = 0;
|
|
while (i3 >= 0 && i3 < i) {
|
|
int i4 = i3;
|
|
while (i4 < i) {
|
|
int max = Math.max(this.j.a(cArr, i4, i), this.k.a(cArr, i4, i));
|
|
if (max == 0 || this.h.a(cArr, i4, i) > 0 || this.i.a(cArr, i4, i) > 0) {
|
|
break;
|
|
}
|
|
i4 += max;
|
|
}
|
|
if (i4 >= i) {
|
|
a(arrayList, RequestConfiguration.MAX_AD_CONTENT_RATING_UNSPECIFIED);
|
|
cArr2 = cArr;
|
|
i2 = i;
|
|
d = -1;
|
|
} else {
|
|
int a2 = this.h.a(cArr, i4, i);
|
|
if (a2 > 0) {
|
|
a(arrayList, RequestConfiguration.MAX_AD_CONTENT_RATING_UNSPECIFIED);
|
|
cArr2 = cArr;
|
|
i2 = i;
|
|
d = i4 + a2;
|
|
} else {
|
|
int a3 = this.i.a(cArr, i4, i);
|
|
if (a3 > 0) {
|
|
int i5 = i4;
|
|
cArr2 = cArr;
|
|
i2 = i;
|
|
d = d(cArr2, i5 + a3, i2, obj, arrayList, i5, a3);
|
|
} else {
|
|
cArr2 = cArr;
|
|
i2 = i;
|
|
d = d(cArr2, i4, i2, obj, arrayList, 0, 0);
|
|
}
|
|
}
|
|
}
|
|
if (d >= i2) {
|
|
a(arrayList, RequestConfiguration.MAX_AD_CONTENT_RATING_UNSPECIFIED);
|
|
}
|
|
i3 = d;
|
|
cArr = cArr2;
|
|
i = i2;
|
|
}
|
|
return arrayList;
|
|
}
|
|
return Collections.EMPTY_LIST;
|
|
}
|
|
|
|
@Override // java.util.ListIterator, java.util.Iterator
|
|
public final boolean hasNext() {
|
|
b();
|
|
if (this.g < this.f.length) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final boolean hasPrevious() {
|
|
b();
|
|
if (this.g > 0) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override // java.util.ListIterator, java.util.Iterator
|
|
public final Object next() {
|
|
if (hasNext()) {
|
|
String[] strArr = this.f;
|
|
int i = this.g;
|
|
this.g = i + 1;
|
|
return strArr[i];
|
|
}
|
|
throw new NoSuchElementException();
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final int nextIndex() {
|
|
return this.g;
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final String previous() {
|
|
if (hasPrevious()) {
|
|
String[] strArr = this.f;
|
|
int i = this.g - 1;
|
|
this.g = i;
|
|
return strArr[i];
|
|
}
|
|
throw new NoSuchElementException();
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final int previousIndex() {
|
|
return this.g - 1;
|
|
}
|
|
|
|
@Override // java.util.ListIterator, java.util.Iterator
|
|
public final void remove() {
|
|
throw new UnsupportedOperationException("remove() is unsupported");
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final void set(String str) {
|
|
throw new UnsupportedOperationException("set() is unsupported");
|
|
}
|
|
|
|
public final String toString() {
|
|
if (this.f == null) {
|
|
return "StringTokenizer[not tokenized yet]";
|
|
}
|
|
StringBuilder sb = new StringBuilder("StringTokenizer");
|
|
b();
|
|
sb.append(new ArrayList(Arrays.asList(this.f)));
|
|
return sb.toString();
|
|
}
|
|
}
|