soul-browser/sources/java/com/google/android/gms/internal/appset/zzl.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

113 lines
5.3 KiB
Java

package com.google.android.gms.internal.appset;
import android.content.Context;
import android.content.SharedPreferences;
import android.util.Log;
import com.google.android.gms.appset.AppSetIdClient;
import com.google.android.gms.appset.AppSetIdInfo;
import com.google.android.gms.common.util.DefaultClock;
import com.google.android.gms.tasks.Task;
import com.google.android.gms.tasks.TaskCompletionSource;
import java.util.UUID;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
/* loaded from: classes.dex */
public final class zzl implements AppSetIdClient {
public static zzl d;
/* renamed from: a, reason: collision with root package name */
public final Context f9433a;
public final ScheduledExecutorService b;
/* renamed from: c, reason: collision with root package name */
public final ExecutorService f9434c;
public zzl(Context context) {
ScheduledExecutorService newSingleThreadScheduledExecutor = Executors.newSingleThreadScheduledExecutor();
this.b = newSingleThreadScheduledExecutor;
this.f9434c = Executors.newSingleThreadExecutor();
this.f9433a = context;
newSingleThreadScheduledExecutor.scheduleAtFixedRate(new zzj(this), 0L, 86400L, TimeUnit.SECONDS);
}
public static final SharedPreferences a(Context context) {
return context.getSharedPreferences("app_set_id_storage", 0);
}
public static final void c(Context context) {
String str;
SharedPreferences a2 = a(context);
if (!a2.edit().putLong("app_set_id_last_used_time", DefaultClock.getInstance().currentTimeMillis()).commit()) {
String valueOf = String.valueOf(context.getPackageName());
if (valueOf.length() != 0) {
str = "Failed to store app set ID last used time for App ".concat(valueOf);
} else {
str = new String("Failed to store app set ID last used time for App ");
}
Log.e("AppSet", str);
throw new Exception("Failed to store the app set ID last used time.");
}
}
@Override // com.google.android.gms.appset.AppSetIdClient
public final Task b() {
final TaskCompletionSource taskCompletionSource = new TaskCompletionSource();
this.f9434c.execute(new Runnable() { // from class: com.google.android.gms.internal.appset.zzh
@Override // java.lang.Runnable
public final void run() {
String str;
String str2;
Context context = zzl.this.f9433a;
String string = zzl.a(context).getString("app_set_id", null);
long j = -1;
long j2 = zzl.a(context).getLong("app_set_id_last_used_time", -1L);
if (j2 != -1) {
j = 33696000000L + j2;
}
TaskCompletionSource taskCompletionSource2 = taskCompletionSource;
if (string != null && DefaultClock.getInstance().currentTimeMillis() <= j) {
try {
zzl.c(context);
} catch (zzk e) {
taskCompletionSource2.a(e);
return;
}
} else {
string = UUID.randomUUID().toString();
try {
if (!context.getSharedPreferences("app_set_id_storage", 0).edit().putString("app_set_id", string).commit()) {
String valueOf = String.valueOf(context.getPackageName());
if (valueOf.length() != 0) {
str2 = "Failed to store app set ID generated for App ".concat(valueOf);
} else {
str2 = new String("Failed to store app set ID generated for App ");
}
Log.e("AppSet", str2);
throw new Exception("Failed to store the app set ID.");
}
zzl.c(context);
SharedPreferences sharedPreferences = context.getSharedPreferences("app_set_id_storage", 0);
if (!sharedPreferences.edit().putLong("app_set_id_creation_time", DefaultClock.getInstance().currentTimeMillis()).commit()) {
String valueOf2 = String.valueOf(context.getPackageName());
if (valueOf2.length() != 0) {
str = "Failed to store app set ID creation time for App ".concat(valueOf2);
} else {
str = new String("Failed to store app set ID creation time for App ");
}
Log.e("AppSet", str);
throw new Exception("Failed to store the app set ID creation time.");
}
} catch (zzk e2) {
taskCompletionSource2.a(e2);
return;
}
}
taskCompletionSource2.b(new AppSetIdInfo(string, 1));
}
});
return taskCompletionSource.f11605a;
}
}