* 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>
70 lines
3.4 KiB
Java
70 lines
3.4 KiB
Java
package com.frostwire.jlibtorrent.swig;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class operation_t {
|
|
public static int P;
|
|
|
|
/* renamed from: a, reason: collision with root package name */
|
|
public final int f2690a;
|
|
public final String b;
|
|
|
|
/* renamed from: c, reason: collision with root package name */
|
|
public static final operation_t f2689c = new operation_t("unknown");
|
|
public static final operation_t d = new operation_t("bittorrent");
|
|
public static final operation_t e = new operation_t("iocontrol");
|
|
public static final operation_t f = new operation_t("getpeername");
|
|
public static final operation_t g = new operation_t("getname");
|
|
public static final operation_t h = new operation_t("alloc_recvbuf");
|
|
public static final operation_t i = new operation_t("alloc_sndbuf");
|
|
public static final operation_t j = new operation_t("file_write");
|
|
public static final operation_t k = new operation_t("file_read");
|
|
public static final operation_t l = new operation_t("file");
|
|
public static final operation_t m = new operation_t("sock_write");
|
|
public static final operation_t n = new operation_t("sock_read");
|
|
public static final operation_t o = new operation_t("sock_open");
|
|
public static final operation_t p = new operation_t("sock_bind");
|
|
public static final operation_t q = new operation_t("available");
|
|
public static final operation_t r = new operation_t("encryption");
|
|
public static final operation_t s = new operation_t("connect");
|
|
public static final operation_t t = new operation_t("ssl_handshake");
|
|
public static final operation_t u = new operation_t("get_interface");
|
|
public static final operation_t v = new operation_t("sock_listen");
|
|
public static final operation_t w = new operation_t("sock_bind_to_device");
|
|
public static final operation_t x = new operation_t("sock_accept");
|
|
public static final operation_t y = new operation_t("parse_address");
|
|
public static final operation_t z = new operation_t("enum_if");
|
|
public static final operation_t A = new operation_t("file_stat");
|
|
public static final operation_t B = new operation_t("file_copy");
|
|
public static final operation_t C = new operation_t("file_fallocate");
|
|
public static final operation_t D = new operation_t("file_hard_link");
|
|
public static final operation_t E = new operation_t("file_remove");
|
|
public static final operation_t F = new operation_t("file_rename");
|
|
public static final operation_t G = new operation_t("file_open");
|
|
public static final operation_t H = new operation_t("mkdir");
|
|
public static final operation_t I = new operation_t("check_resume");
|
|
public static final operation_t J = new operation_t("exception");
|
|
public static final operation_t K = new operation_t("alloc_cache_piece");
|
|
public static final operation_t L = new operation_t("partfile_move");
|
|
public static final operation_t M = new operation_t("partfile_read");
|
|
public static final operation_t N = new operation_t("partfile_write");
|
|
public static final operation_t O = new operation_t("hostname_lookup");
|
|
|
|
static {
|
|
new operation_t("symlink");
|
|
new operation_t("handshake");
|
|
new operation_t("sock_option");
|
|
new operation_t("enum_route");
|
|
P = 0;
|
|
}
|
|
|
|
public operation_t(String str) {
|
|
this.b = str;
|
|
int i2 = P;
|
|
P = i2 + 1;
|
|
this.f2690a = i2;
|
|
}
|
|
|
|
public final String toString() {
|
|
return this.b;
|
|
}
|
|
}
|