* 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>
63 lines
2.7 KiB
Java
63 lines
2.7 KiB
Java
package androidx.core.splashscreen;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class R {
|
|
|
|
/* loaded from: classes.dex */
|
|
public static final class attr {
|
|
public static int isLightTheme = 0x7f0402b5;
|
|
public static int postSplashScreenTheme = 0x7f040420;
|
|
public static int splashScreenIconSize = 0x7f040487;
|
|
public static int windowSplashScreenAnimatedIcon = 0x7f0405b2;
|
|
public static int windowSplashScreenAnimationDuration = 0x7f0405b3;
|
|
public static int windowSplashScreenBackground = 0x7f0405b4;
|
|
public static int windowSplashScreenIconBackgroundColor = 0x7f0405b5;
|
|
}
|
|
|
|
/* loaded from: classes.dex */
|
|
public static final class dimen {
|
|
public static int splashscreen_icon_mask_size_no_background = 0x7f07043a;
|
|
public static int splashscreen_icon_mask_size_with_background = 0x7f07043b;
|
|
public static int splashscreen_icon_mask_stroke_no_background = 0x7f07043c;
|
|
public static int splashscreen_icon_mask_stroke_with_background = 0x7f07043d;
|
|
public static int splashscreen_icon_size = 0x7f07043e;
|
|
public static int splashscreen_icon_size_no_background = 0x7f07043f;
|
|
public static int splashscreen_icon_size_with_background = 0x7f070440;
|
|
}
|
|
|
|
/* loaded from: classes.dex */
|
|
public static final class drawable {
|
|
public static int compat_splash_screen = 0x7f080167;
|
|
public static int compat_splash_screen_no_icon_background = 0x7f080168;
|
|
public static int icon_background = 0x7f080268;
|
|
}
|
|
|
|
/* loaded from: classes.dex */
|
|
public static final class id {
|
|
public static int splashscreen_icon_view = 0x7f0902c5;
|
|
}
|
|
|
|
/* loaded from: classes.dex */
|
|
public static final class integer {
|
|
public static int default_icon_animation_duration = 0x7f0a0007;
|
|
}
|
|
|
|
/* loaded from: classes.dex */
|
|
public static final class layout {
|
|
public static int splash_screen_view = 0x7f0c0091;
|
|
}
|
|
|
|
/* loaded from: classes.dex */
|
|
public static final class style {
|
|
public static int Base_Theme_SplashScreen = 0x7f130079;
|
|
public static int Base_Theme_SplashScreen_DayNight = 0x7f13007a;
|
|
public static int Base_Theme_SplashScreen_Light = 0x7f13007b;
|
|
public static int Base_v21_Theme_SplashScreen = 0x7f130127;
|
|
public static int Base_v21_Theme_SplashScreen_Light = 0x7f130128;
|
|
public static int Base_v27_Theme_SplashScreen = 0x7f130129;
|
|
public static int Base_v27_Theme_SplashScreen_Light = 0x7f13012a;
|
|
public static int Theme_SplashScreen = 0x7f1302ef;
|
|
public static int Theme_SplashScreen_Common = 0x7f1302f0;
|
|
public static int Theme_SplashScreen_IconBackground = 0x7f1302f1;
|
|
}
|
|
}
|