* 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>
153 lines
4.9 KiB
Java
153 lines
4.9 KiB
Java
package androidx.appcompat.widget;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.TypedArray;
|
|
import android.util.AttributeSet;
|
|
import android.view.View;
|
|
import android.widget.LinearLayout;
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import androidx.annotation.RestrictTo;
|
|
import androidx.appcompat.R;
|
|
import androidx.core.view.ViewCompat;
|
|
import java.util.WeakHashMap;
|
|
import kotlin.jvm.internal.IntCompanionObject;
|
|
|
|
@RestrictTo
|
|
/* loaded from: classes.dex */
|
|
public class ButtonBarLayout extends LinearLayout {
|
|
|
|
/* renamed from: c, reason: collision with root package name */
|
|
public boolean f288c;
|
|
public boolean f;
|
|
public int g;
|
|
|
|
public ButtonBarLayout(@NonNull Context context, @Nullable AttributeSet attributeSet) {
|
|
super(context, attributeSet);
|
|
this.g = -1;
|
|
TypedArray obtainStyledAttributes = context.obtainStyledAttributes(attributeSet, R.styleable.ButtonBarLayout);
|
|
ViewCompat.y(this, context, R.styleable.ButtonBarLayout, attributeSet, obtainStyledAttributes, 0);
|
|
this.f288c = obtainStyledAttributes.getBoolean(R.styleable.ButtonBarLayout_allowStacking, true);
|
|
obtainStyledAttributes.recycle();
|
|
if (getOrientation() == 1) {
|
|
setStacked(this.f288c);
|
|
}
|
|
}
|
|
|
|
private void setStacked(boolean z) {
|
|
int i;
|
|
int i2;
|
|
if (this.f != z) {
|
|
if (!z || this.f288c) {
|
|
this.f = z;
|
|
setOrientation(z ? 1 : 0);
|
|
if (z) {
|
|
i = 8388613;
|
|
} else {
|
|
i = 80;
|
|
}
|
|
setGravity(i);
|
|
View findViewById = findViewById(R.id.spacer);
|
|
if (findViewById != null) {
|
|
if (z) {
|
|
i2 = 8;
|
|
} else {
|
|
i2 = 4;
|
|
}
|
|
findViewById.setVisibility(i2);
|
|
}
|
|
for (int childCount = getChildCount() - 2; childCount >= 0; childCount--) {
|
|
bringChildToFront(getChildAt(childCount));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override // android.widget.LinearLayout, android.view.View
|
|
public final void onMeasure(int i, int i2) {
|
|
int i3;
|
|
boolean z;
|
|
int i4;
|
|
int size = View.MeasureSpec.getSize(i);
|
|
int i5 = 0;
|
|
if (this.f288c) {
|
|
if (size > this.g && this.f) {
|
|
setStacked(false);
|
|
}
|
|
this.g = size;
|
|
}
|
|
if (!this.f && View.MeasureSpec.getMode(i) == 1073741824) {
|
|
i3 = View.MeasureSpec.makeMeasureSpec(size, IntCompanionObject.MIN_VALUE);
|
|
z = true;
|
|
} else {
|
|
i3 = i;
|
|
z = false;
|
|
}
|
|
super.onMeasure(i3, i2);
|
|
if (this.f288c && !this.f && (getMeasuredWidthAndState() & (-16777216)) == 16777216) {
|
|
setStacked(true);
|
|
z = true;
|
|
}
|
|
if (z) {
|
|
super.onMeasure(i, i2);
|
|
}
|
|
int childCount = getChildCount();
|
|
int i6 = 0;
|
|
while (true) {
|
|
i4 = -1;
|
|
if (i6 < childCount) {
|
|
if (getChildAt(i6).getVisibility() == 0) {
|
|
break;
|
|
} else {
|
|
i6++;
|
|
}
|
|
} else {
|
|
i6 = -1;
|
|
break;
|
|
}
|
|
}
|
|
if (i6 >= 0) {
|
|
View childAt = getChildAt(i6);
|
|
LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) childAt.getLayoutParams();
|
|
int measuredHeight = childAt.getMeasuredHeight() + getPaddingTop() + layoutParams.topMargin + layoutParams.bottomMargin;
|
|
if (this.f) {
|
|
int i7 = i6 + 1;
|
|
int childCount2 = getChildCount();
|
|
while (true) {
|
|
if (i7 >= childCount2) {
|
|
break;
|
|
}
|
|
if (getChildAt(i7).getVisibility() == 0) {
|
|
i4 = i7;
|
|
break;
|
|
}
|
|
i7++;
|
|
}
|
|
if (i4 >= 0) {
|
|
i5 = getChildAt(i4).getPaddingTop() + ((int) (getResources().getDisplayMetrics().density * 16.0f)) + measuredHeight;
|
|
} else {
|
|
i5 = measuredHeight;
|
|
}
|
|
} else {
|
|
i5 = getPaddingBottom() + measuredHeight;
|
|
}
|
|
}
|
|
WeakHashMap weakHashMap = ViewCompat.f792a;
|
|
if (getMinimumHeight() != i5) {
|
|
setMinimumHeight(i5);
|
|
if (i2 == 0) {
|
|
super.onMeasure(i, i2);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void setAllowStacking(boolean z) {
|
|
if (this.f288c != z) {
|
|
this.f288c = z;
|
|
if (!z && this.f) {
|
|
setStacked(false);
|
|
}
|
|
requestLayout();
|
|
}
|
|
}
|
|
}
|