Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
package kotlin.jvm.internal;
/* loaded from: classes5.dex */
public final class FloatCompanionObject {
public static final FloatCompanionObject INSTANCE = new FloatCompanionObject();
public static final float MAX_VALUE = Float.MAX_VALUE;
public static final float MIN_VALUE = Float.MIN_VALUE;
public static final float NEGATIVE_INFINITY = Float.NEGATIVE_INFINITY;
public static final float NaN = Float.NaN;
public static final float POSITIVE_INFINITY = Float.POSITIVE_INFINITY;
public static final int SIZE_BITS = 32;
public static final int SIZE_BYTES = 4;
public static /* synthetic */ void getMAX_VALUE$annotations() {
}
public static /* synthetic */ void getMIN_VALUE$annotations() {
}
public static /* synthetic */ void getNEGATIVE_INFINITY$annotations() {
}
public static /* synthetic */ void getNaN$annotations() {
}
public static /* synthetic */ void getPOSITIVE_INFINITY$annotations() {
}
public static /* synthetic */ void getSIZE_BITS$annotations() {
}
public static /* synthetic */ void getSIZE_BYTES$annotations() {
}
public final float getMAX_VALUE() {
return Float.MAX_VALUE;
}
public final float getMIN_VALUE() {
return Float.MIN_VALUE;
}
public final float getNEGATIVE_INFINITY() {
return Float.NEGATIVE_INFINITY;
}
public final float getNaN() {
return Float.NaN;
}
public final float getPOSITIVE_INFINITY() {
return Float.POSITIVE_INFINITY;
}
private FloatCompanionObject() {
}
}