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,54 @@
package com.ironsource.adqualitysdk.sdk;
/* loaded from: classes4.dex */
public enum ISAdQualityInitError {
AD_QUALITY_SDK_WAS_SHUTDOWN(0),
ILLEGAL_USER_ID(1),
ILLEGAL_APP_KEY(2),
EXCEPTION_ON_INIT(3),
NO_NETWORK_CONNECTION(4),
CONFIG_LOAD_TIMEOUT(5),
CONNECTOR_LOAD_TIMEOUT(6),
AD_NETWORK_VERSION_NOT_SUPPORTED_YET(7),
AD_NETWORK_SDK_REQUIRES_NEWER_AD_QUALITY_SDK(8),
AD_QUALITY_ALREADY_INITIALIZED(9);
/* renamed from: メ, reason: contains not printable characters */
private final int f32;
public static ISAdQualityInitError fromInt(int i) {
switch (i) {
case 0:
return AD_QUALITY_SDK_WAS_SHUTDOWN;
case 1:
return ILLEGAL_USER_ID;
case 2:
return ILLEGAL_APP_KEY;
case 3:
return EXCEPTION_ON_INIT;
case 4:
return NO_NETWORK_CONNECTION;
case 5:
return CONFIG_LOAD_TIMEOUT;
case 6:
return CONNECTOR_LOAD_TIMEOUT;
case 7:
return AD_NETWORK_VERSION_NOT_SUPPORTED_YET;
case 8:
return AD_NETWORK_SDK_REQUIRES_NEWER_AD_QUALITY_SDK;
case 9:
return AD_QUALITY_ALREADY_INITIALIZED;
default:
return null;
}
}
public final int getValue() {
return this.f32;
}
ISAdQualityInitError(int i) {
this.f32 = i;
}
}