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,33 @@
package com.vungle.ads;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
public final class InternalError extends VungleError {
public /* synthetic */ InternalError(int i, String str, int i2, DefaultConstructorMarker defaultConstructorMarker) {
this(i, (i2 & 2) != 0 ? null : str);
}
public InternalError(int i, String str) {
super(Integer.valueOf(i), null, str, null, null, null, 58, null);
}
@Override // com.vungle.ads.VungleError
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!Intrinsics.areEqual(InternalError.class, obj != null ? obj.getClass() : null)) {
return false;
}
int code = getCode();
Intrinsics.checkNotNull(obj, "null cannot be cast to non-null type com.vungle.ads.InternalError");
return code == ((InternalError) obj).getCode();
}
@Override // com.vungle.ads.VungleError
public int hashCode() {
return InternalError.class.hashCode();
}
}