* 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>
194 lines
6.4 KiB
Java
194 lines
6.4 KiB
Java
package com.google.gson;
|
|
|
|
import com.google.gson.internal.LazilyParsedNumber;
|
|
import com.google.gson.internal.NumberLimits;
|
|
import j$.util.Objects;
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.math.BigInteger;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class JsonPrimitive extends JsonElement {
|
|
|
|
/* renamed from: c, reason: collision with root package name */
|
|
public final Serializable f12672c;
|
|
|
|
public JsonPrimitive(Boolean bool) {
|
|
Objects.requireNonNull(bool);
|
|
this.f12672c = bool;
|
|
}
|
|
|
|
public static boolean t(JsonPrimitive jsonPrimitive) {
|
|
Serializable serializable = jsonPrimitive.f12672c;
|
|
if (serializable instanceof Number) {
|
|
Number number = (Number) serializable;
|
|
if ((number instanceof BigInteger) || (number instanceof Long) || (number instanceof Integer) || (number instanceof Short) || (number instanceof Byte)) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public final boolean a() {
|
|
Serializable serializable = this.f12672c;
|
|
if (serializable instanceof Boolean) {
|
|
return ((Boolean) serializable).booleanValue();
|
|
}
|
|
return Boolean.parseBoolean(p());
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public final float c() {
|
|
if (this.f12672c instanceof Number) {
|
|
return s().floatValue();
|
|
}
|
|
return Float.parseFloat(p());
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
BigDecimal b;
|
|
BigDecimal b2;
|
|
if (this != obj) {
|
|
if (obj != null && JsonPrimitive.class == obj.getClass()) {
|
|
JsonPrimitive jsonPrimitive = (JsonPrimitive) obj;
|
|
Serializable serializable = jsonPrimitive.f12672c;
|
|
Serializable serializable2 = this.f12672c;
|
|
if (serializable2 == null) {
|
|
if (serializable == null) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
if (t(this) && t(jsonPrimitive)) {
|
|
if (!(serializable2 instanceof BigInteger) && !(serializable instanceof BigInteger)) {
|
|
if (s().longValue() == jsonPrimitive.s().longValue()) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
return q().equals(jsonPrimitive.q());
|
|
}
|
|
if ((serializable2 instanceof Number) && (serializable instanceof Number)) {
|
|
if ((serializable2 instanceof BigDecimal) && (serializable instanceof BigDecimal)) {
|
|
if (serializable2 instanceof BigDecimal) {
|
|
b = (BigDecimal) serializable2;
|
|
} else {
|
|
b = NumberLimits.b(p());
|
|
}
|
|
if (serializable instanceof BigDecimal) {
|
|
b2 = (BigDecimal) serializable;
|
|
} else {
|
|
b2 = NumberLimits.b(jsonPrimitive.p());
|
|
}
|
|
if (b.compareTo(b2) == 0) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
double r = r();
|
|
double r2 = jsonPrimitive.r();
|
|
if (r != r2) {
|
|
if (Double.isNaN(r) && Double.isNaN(r2)) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
return serializable2.equals(serializable);
|
|
}
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public final int g() {
|
|
if (this.f12672c instanceof Number) {
|
|
return s().intValue();
|
|
}
|
|
return Integer.parseInt(p());
|
|
}
|
|
|
|
public final int hashCode() {
|
|
long doubleToLongBits;
|
|
Serializable serializable = this.f12672c;
|
|
if (serializable == null) {
|
|
return 31;
|
|
}
|
|
if (t(this)) {
|
|
doubleToLongBits = s().longValue();
|
|
} else if (serializable instanceof Number) {
|
|
doubleToLongBits = Double.doubleToLongBits(s().doubleValue());
|
|
} else {
|
|
return serializable.hashCode();
|
|
}
|
|
return (int) (doubleToLongBits ^ (doubleToLongBits >>> 32));
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public final long m() {
|
|
if (this.f12672c instanceof Number) {
|
|
return s().longValue();
|
|
}
|
|
return Long.parseLong(p());
|
|
}
|
|
|
|
@Override // com.google.gson.JsonElement
|
|
public final String p() {
|
|
Serializable serializable = this.f12672c;
|
|
if (serializable instanceof String) {
|
|
return (String) serializable;
|
|
}
|
|
if (serializable instanceof Number) {
|
|
return s().toString();
|
|
}
|
|
if (serializable instanceof Boolean) {
|
|
return ((Boolean) serializable).toString();
|
|
}
|
|
throw new AssertionError("Unexpected value type: " + serializable.getClass());
|
|
}
|
|
|
|
public final BigInteger q() {
|
|
Serializable serializable = this.f12672c;
|
|
if (serializable instanceof BigInteger) {
|
|
return (BigInteger) serializable;
|
|
}
|
|
if (t(this)) {
|
|
return BigInteger.valueOf(s().longValue());
|
|
}
|
|
String p = p();
|
|
NumberLimits.a(p);
|
|
return new BigInteger(p);
|
|
}
|
|
|
|
public final double r() {
|
|
if (this.f12672c instanceof Number) {
|
|
return s().doubleValue();
|
|
}
|
|
return Double.parseDouble(p());
|
|
}
|
|
|
|
public final Number s() {
|
|
Serializable serializable = this.f12672c;
|
|
if (serializable instanceof Number) {
|
|
return (Number) serializable;
|
|
}
|
|
if (serializable instanceof String) {
|
|
return new LazilyParsedNumber((String) serializable);
|
|
}
|
|
throw new UnsupportedOperationException("Primitive is neither a number nor a string");
|
|
}
|
|
|
|
public JsonPrimitive(Number number) {
|
|
Objects.requireNonNull(number);
|
|
this.f12672c = number;
|
|
}
|
|
|
|
public JsonPrimitive(String str) {
|
|
Objects.requireNonNull(str);
|
|
this.f12672c = str;
|
|
}
|
|
}
|