soul-browser/sources/java/com/google/common/collect/CompactHashing.java
KaKi87 550ddb0413
Decompile and recreate Soul Browser v1.4.85 with APK CI builds (#1)
* 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>
2026-08-10 16:07:14 +02:00

126 lines
3.7 KiB
Java

package com.google.common.collect;
import com.google.common.annotations.GwtIncompatible;
import kotlin.UByte;
import kotlin.UShort;
@GwtIncompatible
/* loaded from: classes3.dex */
final class CompactHashing {
public static Object a(int i) {
if (i >= 2 && i <= 1073741824 && Integer.highestOneBit(i) == i) {
if (i <= 256) {
return new byte[i];
}
if (i <= 65536) {
return new short[i];
}
return new int[i];
}
throw new IllegalArgumentException(android.support.v4.media.a.e(i, "must be power of 2 between 2^1 and 2^30: "));
}
public static int b(int i, int i2, int i3) {
return (i & (~i3)) | (i2 & i3);
}
public static int c(int i) {
return (i + 1) * (i < 32 ? 4 : 2);
}
/* JADX WARN: Code restructure failed: missing block: B:12:0x002b, code lost:
r9 = r6 & r11;
*/
/* JADX WARN: Code restructure failed: missing block: B:13:0x002d, code lost:
if (r5 != (-1)) goto L17;
*/
/* JADX WARN: Code restructure failed: missing block: B:14:0x002f, code lost:
f(r1, r9, r12);
*/
/* JADX WARN: Code restructure failed: missing block: B:15:0x0032, code lost:
return r2;
*/
/* JADX WARN: Code restructure failed: missing block: B:17:0x0033, code lost:
r13[r5] = b(r13[r5], r9, r11);
*/
/* JADX WARN: Code restructure failed: missing block: B:18:0x003b, code lost:
return r2;
*/
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
public static int d(java.lang.Object r9, java.lang.Object r10, int r11, java.lang.Object r12, int[] r13, java.lang.Object[] r14, java.lang.Object[] r15) {
/*
int r0 = com.google.common.collect.Hashing.c(r9)
r1 = r0 & r11
int r2 = e(r1, r12)
r3 = -1
if (r2 != 0) goto Le
goto L40
Le:
int r4 = ~r11
r0 = r0 & r4
r5 = r3
L11:
int r2 = r2 + (-1)
r6 = r13[r2]
r7 = r6 & r4
if (r7 != r0) goto L3c
r7 = r14[r2]
boolean r7 = j$.util.Objects.equals(r9, r7)
if (r7 == 0) goto L3c
if (r15 == 0) goto L2b
r7 = r15[r2]
boolean r7 = j$.util.Objects.equals(r10, r7)
if (r7 == 0) goto L3c
L2b:
r9 = r6 & r11
if (r5 != r3) goto L33
f(r1, r9, r12)
return r2
L33:
r10 = r13[r5]
int r9 = b(r10, r9, r11)
r13[r5] = r9
return r2
L3c:
r5 = r6 & r11
if (r5 != 0) goto L41
L40:
return r3
L41:
r8 = r5
r5 = r2
r2 = r8
goto L11
*/
throw new UnsupportedOperationException("Method not decompiled: com.google.common.collect.CompactHashing.d(java.lang.Object, java.lang.Object, int, java.lang.Object, int[], java.lang.Object[], java.lang.Object[]):int");
}
public static int e(int i, Object obj) {
if (obj instanceof byte[]) {
return ((byte[]) obj)[i] & UByte.MAX_VALUE;
}
if (obj instanceof short[]) {
return ((short[]) obj)[i] & UShort.MAX_VALUE;
}
return ((int[]) obj)[i];
}
public static void f(int i, int i2, Object obj) {
if (obj instanceof byte[]) {
((byte[]) obj)[i] = (byte) i2;
} else if (obj instanceof short[]) {
((short[]) obj)[i] = (short) i2;
} else {
((int[]) obj)[i] = i2;
}
}
}