Files
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -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;
}
}