* 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>
162 lines
6.7 KiB
Java
162 lines
6.7 KiB
Java
package kotlinx.coroutines.android;
|
|
|
|
import android.os.Handler;
|
|
import android.os.Looper;
|
|
import java.util.concurrent.CancellationException;
|
|
import kotlin.Metadata;
|
|
import kotlin.Unit;
|
|
import kotlin.coroutines.CoroutineContext;
|
|
import kotlin.jvm.functions.Function1;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import kotlin.jvm.internal.SourceDebugExtension;
|
|
import kotlin.ranges.RangesKt;
|
|
import kotlin.time.DurationKt;
|
|
import kotlinx.coroutines.CancellableContinuationImpl;
|
|
import kotlinx.coroutines.Delay;
|
|
import kotlinx.coroutines.Dispatchers;
|
|
import kotlinx.coroutines.DisposableHandle;
|
|
import kotlinx.coroutines.JobKt;
|
|
import kotlinx.coroutines.MainCoroutineDispatcher;
|
|
import kotlinx.coroutines.NonDisposableHandle;
|
|
import kotlinx.coroutines.internal.MainDispatcherLoader;
|
|
import kotlinx.coroutines.scheduling.DefaultScheduler;
|
|
|
|
@Metadata(d1 = {"\u0000\u000e\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\b\u0000\u0018\u00002\u00020\u00012\u00020\u0002¨\u0006\u0003"}, d2 = {"Lkotlinx/coroutines/android/HandlerContext;", "Lkotlinx/coroutines/android/HandlerDispatcher;", "Lkotlinx/coroutines/Delay;", "kotlinx-coroutines-android"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
|
@SourceDebugExtension({"SMAP\nHandlerDispatcher.kt\nKotlin\n*S Kotlin\n*F\n+ 1 HandlerDispatcher.kt\nkotlinx/coroutines/android/HandlerContext\n+ 2 Runnable.kt\nkotlinx/coroutines/RunnableKt\n*L\n1#1,212:1\n13#2:213\n*S KotlinDebug\n*F\n+ 1 HandlerDispatcher.kt\nkotlinx/coroutines/android/HandlerContext\n*L\n140#1:213\n*E\n"})
|
|
/* loaded from: classes4.dex */
|
|
public final class HandlerContext extends HandlerDispatcher implements Delay {
|
|
public final Handler f;
|
|
public final boolean g;
|
|
public final HandlerContext h;
|
|
|
|
public HandlerContext(Handler handler, boolean z) {
|
|
HandlerContext handlerContext;
|
|
this.f = handler;
|
|
this.g = z;
|
|
if (z) {
|
|
handlerContext = this;
|
|
} else {
|
|
handlerContext = new HandlerContext(handler, true);
|
|
}
|
|
this.h = handlerContext;
|
|
}
|
|
|
|
@Override // kotlinx.coroutines.CoroutineDispatcher
|
|
public final void S(CoroutineContext coroutineContext, Runnable runnable) {
|
|
if (!this.f.post(runnable)) {
|
|
Z(coroutineContext, runnable);
|
|
}
|
|
}
|
|
|
|
@Override // kotlinx.coroutines.CoroutineDispatcher
|
|
public final boolean W(CoroutineContext coroutineContext) {
|
|
if (this.g && Intrinsics.areEqual(Looper.myLooper(), this.f.getLooper())) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override // kotlinx.coroutines.MainCoroutineDispatcher
|
|
public final MainCoroutineDispatcher X() {
|
|
return this.h;
|
|
}
|
|
|
|
public final void Z(CoroutineContext coroutineContext, Runnable runnable) {
|
|
JobKt.a(coroutineContext, new CancellationException("The task was rejected, the handler underlying the dispatcher '" + this + "' was closed"));
|
|
Dispatchers.b.S(coroutineContext, runnable);
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
/* JADX WARN: Type inference failed for: r0v0, types: [kotlinx.coroutines.android.HandlerContext$scheduleResumeAfterDelay$$inlined$Runnable$1, java.lang.Runnable] */
|
|
@Override // kotlinx.coroutines.Delay
|
|
public final void e(long j, final CancellableContinuationImpl cancellableContinuationImpl) {
|
|
final ?? r0 = new Runnable() { // from class: kotlinx.coroutines.android.HandlerContext$scheduleResumeAfterDelay$$inlined$Runnable$1
|
|
@Override // java.lang.Runnable
|
|
public final void run() {
|
|
CancellableContinuationImpl.this.B(this, Unit.INSTANCE);
|
|
}
|
|
};
|
|
if (this.f.postDelayed(r0, RangesKt.coerceAtMost(j, DurationKt.MAX_MILLIS))) {
|
|
cancellableContinuationImpl.u(new Function1<Throwable, Unit>() { // from class: kotlinx.coroutines.android.HandlerContext$scheduleResumeAfterDelay$1
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
{
|
|
super(1);
|
|
}
|
|
|
|
@Override // kotlin.jvm.functions.Function1
|
|
public final Unit invoke(Throwable th) {
|
|
HandlerContext.this.f.removeCallbacks(r0);
|
|
return Unit.INSTANCE;
|
|
}
|
|
});
|
|
} else {
|
|
Z(cancellableContinuationImpl.i, r0);
|
|
}
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (obj instanceof HandlerContext) {
|
|
HandlerContext handlerContext = (HandlerContext) obj;
|
|
if (handlerContext.f == this.f && handlerContext.g == this.g) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int i;
|
|
int identityHashCode = System.identityHashCode(this.f);
|
|
if (this.g) {
|
|
i = 1231;
|
|
} else {
|
|
i = 1237;
|
|
}
|
|
return identityHashCode ^ i;
|
|
}
|
|
|
|
@Override // kotlinx.coroutines.android.HandlerDispatcher, kotlinx.coroutines.Delay
|
|
public final DisposableHandle o(long j, final Runnable runnable, CoroutineContext coroutineContext) {
|
|
if (this.f.postDelayed(runnable, RangesKt.coerceAtMost(j, DurationKt.MAX_MILLIS))) {
|
|
return new DisposableHandle() { // from class: kotlinx.coroutines.android.a
|
|
@Override // kotlinx.coroutines.DisposableHandle
|
|
public final void c() {
|
|
HandlerContext.this.f.removeCallbacks(runnable);
|
|
}
|
|
};
|
|
}
|
|
Z(coroutineContext, runnable);
|
|
return NonDisposableHandle.f21602c;
|
|
}
|
|
|
|
@Override // kotlinx.coroutines.MainCoroutineDispatcher, kotlinx.coroutines.CoroutineDispatcher
|
|
public final String toString() {
|
|
MainCoroutineDispatcher mainCoroutineDispatcher;
|
|
String str;
|
|
DefaultScheduler defaultScheduler = Dispatchers.f21584a;
|
|
MainCoroutineDispatcher mainCoroutineDispatcher2 = MainDispatcherLoader.f21890a;
|
|
if (this == mainCoroutineDispatcher2) {
|
|
str = "Dispatchers.Main";
|
|
} else {
|
|
try {
|
|
mainCoroutineDispatcher = mainCoroutineDispatcher2.X();
|
|
} catch (UnsupportedOperationException unused) {
|
|
mainCoroutineDispatcher = null;
|
|
}
|
|
if (this == mainCoroutineDispatcher) {
|
|
str = "Dispatchers.Main.immediate";
|
|
} else {
|
|
str = null;
|
|
}
|
|
}
|
|
if (str == null) {
|
|
String handler = this.f.toString();
|
|
if (this.g) {
|
|
return android.support.v4.media.a.k(handler, ".immediate");
|
|
}
|
|
return handler;
|
|
}
|
|
return str;
|
|
}
|
|
}
|