Files
rr3-apk/decompiled/sources/com/applovin/impl/fq.java
Daniel Elliott f9d20bb3fc 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>
2026-02-18 14:52:23 -08:00

35 lines
922 B
Java

package com.applovin.impl;
import com.ironsource.mediationsdk.logger.IronSourceError;
import org.apache.http.HttpStatus;
/* loaded from: classes.dex */
public enum fq {
UNSPECIFIED(-1),
RESOURCE_REJECTED(1),
API_FRAMEWORK_OR_LANGUAGE_TYPE_NOT_SUPPORTED(2),
FAILED_TO_LOAD_RESOURCE(3),
XML_PARSING(100),
GENERAL_WRAPPER_ERROR(300),
TIMED_OUT(301),
WRAPPER_LIMIT_REACHED(302),
NO_WRAPPER_RESPONSE(HttpStatus.SC_SEE_OTHER),
GENERAL_LINEAR_ERROR(400),
NO_MEDIA_FILE_PROVIDED(401),
MEDIA_FILE_TIMEOUT(402),
MEDIA_FILE_ERROR(405),
GENERAL_COMPANION_AD_ERROR(600),
UNABLE_TO_FETCH_COMPANION_AD_RESOURCE(IronSourceError.ERROR_BN_LOAD_WHILE_LONG_INITIATION),
CAN_NOT_FIND_COMPANION_AD_RESOURCE(IronSourceError.ERROR_BN_LOAD_PLACEMENT_CAPPED);
private final int a;
public int b() {
return this.a;
}
fq(int i) {
this.a = i;
}
}