Primer paso de la investigacion. Se aportan el .apk, las carpetas con el apk extraido y el apk descompilado. El archivo API_DOCUMENTATION.md es un archivo donde se anotaran los descubrimientos del funcionamiento de la API, y los .py son scripts para probar la funcionalidad de la API con los métodos que vayamos encontrando. Finalmente, los archivos .js son scripts de Frida para extraer informacion de la APP durante la ejecucion.

This commit is contained in:
2025-12-04 13:59:54 +01:00
parent f2fd1c3bf5
commit e0133d2ca2
10432 changed files with 1019085 additions and 1 deletions

View File

@@ -0,0 +1,42 @@
package com.google.android.material.transformation;
import A.b;
import O.X;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import androidx.coordinatorlayout.widget.CoordinatorLayout;
import java.util.ArrayList;
import java.util.WeakHashMap;
@Deprecated
/* loaded from: classes3.dex */
public abstract class ExpandableBehavior extends b {
public ExpandableBehavior() {
}
@Override // A.b
public abstract void f(View view);
@Override // A.b
public final boolean h(CoordinatorLayout coordinatorLayout, View view, View view2) {
view2.getClass();
throw new ClassCastException();
}
@Override // A.b
public final boolean k(CoordinatorLayout coordinatorLayout, View view, int i) {
WeakHashMap weakHashMap = X.f1226a;
if (!view.isLaidOut()) {
ArrayList j4 = coordinatorLayout.j(view);
int size = j4.size();
for (int i4 = 0; i4 < size; i4++) {
f(view);
}
}
return false;
}
public ExpandableBehavior(Context context, AttributeSet attributeSet) {
}
}

View File

@@ -0,0 +1,15 @@
package com.google.android.material.transformation;
import android.content.Context;
import android.util.AttributeSet;
@Deprecated
/* loaded from: classes3.dex */
public abstract class ExpandableTransformationBehavior extends ExpandableBehavior {
public ExpandableTransformationBehavior() {
}
public ExpandableTransformationBehavior(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
}

View File

@@ -0,0 +1,39 @@
package com.google.android.material.transformation;
import A.e;
import android.content.Context;
import android.graphics.Rect;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.view.View;
@Deprecated
/* loaded from: classes3.dex */
public abstract class FabTransformationBehavior extends ExpandableTransformationBehavior {
public FabTransformationBehavior() {
new Rect();
new RectF();
new RectF();
}
@Override // com.google.android.material.transformation.ExpandableBehavior, A.b
public final void f(View view) {
if (view.getVisibility() == 8) {
throw new IllegalStateException("This behavior cannot be attached to a GONE view. Set the view to INVISIBLE instead.");
}
}
@Override // A.b
public final void g(e eVar) {
if (eVar.h == 0) {
eVar.h = 80;
}
}
public FabTransformationBehavior(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
new Rect();
new RectF();
new RectF();
}
}

View File

@@ -0,0 +1,26 @@
package com.google.android.material.transformation;
import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
@Deprecated
/* loaded from: classes3.dex */
public class FabTransformationScrimBehavior extends ExpandableTransformationBehavior {
public FabTransformationScrimBehavior() {
}
@Override // com.google.android.material.transformation.ExpandableBehavior, A.b
public final void f(View view) {
}
@Override // A.b
public final boolean u(View view, MotionEvent motionEvent) {
return false;
}
public FabTransformationScrimBehavior(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
}

View File

@@ -0,0 +1,15 @@
package com.google.android.material.transformation;
import android.content.Context;
import android.util.AttributeSet;
@Deprecated
/* loaded from: classes3.dex */
public class FabTransformationSheetBehavior extends FabTransformationBehavior {
public FabTransformationSheetBehavior() {
}
public FabTransformationSheetBehavior(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
}