* 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>
288 lines
9.4 KiB
Java
288 lines
9.4 KiB
Java
package j$.util.stream;
|
|
|
|
import j$.util.Objects;
|
|
import j$.util.Optional;
|
|
import j$.util.Spliterator;
|
|
import j$.util.stream.Collector;
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.Collections;
|
|
import java.util.Comparator;
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
import java.util.function.BiConsumer;
|
|
import java.util.function.BiFunction;
|
|
import java.util.function.BinaryOperator;
|
|
import java.util.function.Consumer;
|
|
import java.util.function.Function;
|
|
import java.util.function.IntFunction;
|
|
import java.util.function.Predicate;
|
|
import java.util.function.Supplier;
|
|
import java.util.function.ToDoubleFunction;
|
|
import java.util.function.ToIntFunction;
|
|
import java.util.function.ToLongFunction;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public abstract class f5 extends a implements Stream {
|
|
@Override // j$.util.stream.Stream
|
|
public final Stream sorted() {
|
|
return new j6(this);
|
|
}
|
|
|
|
/* JADX WARN: Type inference failed for: r0v0, types: [j$.util.stream.Stream, j$.util.stream.a] */
|
|
@Override // j$.util.stream.Stream
|
|
public final Stream distinct() {
|
|
return new a(this, c7.m | c7.t);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Optional min(Comparator comparator) {
|
|
Objects.requireNonNull(comparator);
|
|
return reduce(new j$.util.function.a(comparator, 1));
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Optional findAny() {
|
|
return (Optional) y0(f0.d);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Optional findFirst() {
|
|
return (Optional) y0(f0.f21413c);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Stream sorted(Comparator comparator) {
|
|
return new j6(this, comparator);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Object reduce(Object obj, BiFunction biFunction, BinaryOperator binaryOperator) {
|
|
Objects.requireNonNull(biFunction);
|
|
Objects.requireNonNull(binaryOperator);
|
|
return y0(new a4(d7.REFERENCE, binaryOperator, biFunction, obj, 2));
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Object reduce(Object obj, BinaryOperator binaryOperator) {
|
|
Objects.requireNonNull(binaryOperator);
|
|
Objects.requireNonNull(binaryOperator);
|
|
return y0(new a4(d7.REFERENCE, binaryOperator, binaryOperator, obj, 2));
|
|
}
|
|
|
|
public void forEach(Consumer consumer) {
|
|
Objects.requireNonNull(consumer);
|
|
y0(new m0(consumer, false));
|
|
}
|
|
|
|
public void forEachOrdered(Consumer consumer) {
|
|
Objects.requireNonNull(consumer);
|
|
y0(new m0(consumer, true));
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Optional max(Comparator comparator) {
|
|
Objects.requireNonNull(comparator);
|
|
return reduce(new j$.util.function.a(comparator, 0));
|
|
}
|
|
|
|
@Override // j$.util.stream.a
|
|
public final d7 C0() {
|
|
return d7.REFERENCE;
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Optional reduce(BinaryOperator binaryOperator) {
|
|
Objects.requireNonNull(binaryOperator);
|
|
return (Optional) y0(new y3(d7.REFERENCE, binaryOperator, 2));
|
|
}
|
|
|
|
@Override // j$.util.stream.a
|
|
public final c2 A0(a aVar, Spliterator spliterator, boolean z, IntFunction intFunction) {
|
|
return v3.X(aVar, spliterator, z, intFunction);
|
|
}
|
|
|
|
@Override // j$.util.stream.a
|
|
public final Spliterator K0(a aVar, Supplier supplier, boolean z) {
|
|
return new e7(aVar, supplier, z);
|
|
}
|
|
|
|
@Override // j$.util.stream.a
|
|
public final Spliterator D0(Supplier supplier) {
|
|
return new p7(supplier);
|
|
}
|
|
|
|
@Override // j$.util.stream.a
|
|
public final boolean B0(Spliterator spliterator, n5 n5Var) {
|
|
boolean e;
|
|
do {
|
|
e = n5Var.e();
|
|
if (e) {
|
|
break;
|
|
}
|
|
} while (spliterator.tryAdvance(n5Var));
|
|
return e;
|
|
}
|
|
|
|
@Override // j$.util.stream.v3
|
|
public final u1 s0(long j, IntFunction intFunction) {
|
|
return v3.W(j, intFunction);
|
|
}
|
|
|
|
@Override // j$.util.stream.BaseStream
|
|
/* renamed from: iterator */
|
|
public final Iterator iterator2() {
|
|
Spliterator spliterator = spliterator();
|
|
Objects.requireNonNull(spliterator);
|
|
return new j$.util.z0(spliterator);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Stream filter(Predicate predicate) {
|
|
Objects.requireNonNull(predicate);
|
|
return new p(this, c7.t, predicate, 4);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Stream map(Function function) {
|
|
Objects.requireNonNull(function);
|
|
return new p(this, c7.p | c7.n, function, 5);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final IntStream mapToInt(ToIntFunction toIntFunction) {
|
|
Objects.requireNonNull(toIntFunction);
|
|
return new r0(this, c7.p | c7.n, toIntFunction, 3);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Object collect(Supplier supplier, BiConsumer biConsumer, BiConsumer biConsumer2) {
|
|
Objects.requireNonNull(supplier);
|
|
Objects.requireNonNull(biConsumer);
|
|
Objects.requireNonNull(biConsumer2);
|
|
return y0(new a4(d7.REFERENCE, biConsumer2, biConsumer, supplier, 3));
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final LongStream mapToLong(ToLongFunction toLongFunction) {
|
|
Objects.requireNonNull(toLongFunction);
|
|
return new c1(this, c7.p | c7.n, toLongFunction, 3);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final DoubleStream mapToDouble(ToDoubleFunction toDoubleFunction) {
|
|
Objects.requireNonNull(toDoubleFunction);
|
|
return new u(this, c7.p | c7.n, toDoubleFunction, 2);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final long count() {
|
|
return ((Long) y0(new c4(2))).longValue();
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Stream d(j$.util.p pVar) {
|
|
Objects.requireNonNull(pVar);
|
|
return new p(this, c7.p | c7.n | c7.t, pVar, 6);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final IntStream n(j$.util.p pVar) {
|
|
Objects.requireNonNull(pVar);
|
|
return new r0(this, c7.p | c7.n | c7.t, pVar, 4);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final DoubleStream y(j$.util.p pVar) {
|
|
Objects.requireNonNull(pVar);
|
|
return new u(this, c7.p | c7.n | c7.t, pVar, 3);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Object collect(Collector collector) {
|
|
Collector collector2;
|
|
Object y0;
|
|
if (!this.h.s || !collector.characteristics().contains(Collector.Characteristics.CONCURRENT) || (c7.ORDERED.i(this.m) && !collector.characteristics().contains(Collector.Characteristics.UNORDERED))) {
|
|
Supplier supplier = ((Collector) Objects.requireNonNull(collector)).supplier();
|
|
collector2 = collector;
|
|
y0 = y0(new h4(d7.REFERENCE, collector.combiner(), collector.accumulator(), supplier, collector2));
|
|
} else {
|
|
y0 = collector.supplier().get();
|
|
forEach(new j$.util.concurrent.t(7, collector.accumulator(), y0));
|
|
collector2 = collector;
|
|
}
|
|
return collector2.characteristics().contains(Collector.Characteristics.IDENTITY_FINISH) ? y0 : collector2.finisher().apply(y0);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final LongStream l(j$.util.p pVar) {
|
|
Objects.requireNonNull(pVar);
|
|
return new c1(this, c7.p | c7.n | c7.t, pVar, 2);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Stream peek(Consumer consumer) {
|
|
Objects.requireNonNull(consumer);
|
|
return new p(this, consumer);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Stream limit(long j) {
|
|
if (j < 0) {
|
|
throw new IllegalArgumentException(Long.toString(j));
|
|
}
|
|
return y5.h(this, 0L, j);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Stream skip(long j) {
|
|
if (j >= 0) {
|
|
return j == 0 ? this : y5.h(this, j, -1L);
|
|
}
|
|
throw new IllegalArgumentException(Long.toString(j));
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Stream takeWhile(Predicate predicate) {
|
|
int i = u9.f21498a;
|
|
Objects.requireNonNull(predicate);
|
|
return new q8(this, u9.f21498a, predicate, 0);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Stream dropWhile(Predicate predicate) {
|
|
int i = u9.f21498a;
|
|
Objects.requireNonNull(predicate);
|
|
return new q8(this, u9.b, predicate, 1);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Object[] toArray(IntFunction intFunction) {
|
|
return v3.i0(z0(intFunction), intFunction).m(intFunction);
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final Object[] toArray() {
|
|
return toArray(new y0(19));
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final boolean anyMatch(Predicate predicate) {
|
|
return ((Boolean) y0(v3.t0(p1.ANY, predicate))).booleanValue();
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final boolean allMatch(Predicate predicate) {
|
|
return ((Boolean) y0(v3.t0(p1.ALL, predicate))).booleanValue();
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final boolean noneMatch(Predicate predicate) {
|
|
return ((Boolean) y0(v3.t0(p1.NONE, predicate))).booleanValue();
|
|
}
|
|
|
|
@Override // j$.util.stream.Stream
|
|
public final List toList() {
|
|
return Collections.unmodifiableList(new ArrayList(Arrays.asList(toArray())));
|
|
}
|
|
}
|