public class

AppLovinErrorCodes

extends Object
java.lang.Object
   ↳ com.applovin.sdk.AppLovinErrorCodes

Class Overview

This class conatins a set of common integer error codes seen in the SDK.

Summary

Constants
int FETCH_AD_TIMEOUT Indicates that the network conditions prevented the SDK from receiving an ad.
int INCENTIVIZED_NO_AD_PRELOADED Indicates that the developer called for a rewarded video before one was available.
int INCENTIVIZED_SERVER_TIMEOUT Indicates that a reward validation requested timed out (usually due to poor connectivity).
int INCENTIVIZED_UNKNOWN_SERVER_ERROR Indicates that an unknown server-side error occurred.
int INCENTIVIZED_USER_CLOSED_VIDEO Indicates that the user exited out of the ad early.
int INVALID_URL Indicates that a postback URL you attempted to dispatch was empty or nil.
int NO_FILL Indicates that no ads are currently eligible for your device.
int NO_NETWORK Indicates that the device had no network connectivity at the time of an ad request, either due to airplane mode or no service.
int UNABLE_TO_PRECACHE_IMAGE_RESOURCES Indicates that an attempt to cache an image resource to the filesystem failed; the device may be out of space.
int UNABLE_TO_PRECACHE_RESOURCES Indicates that an attempt to cache a resource to the filesystem failed; the device may be out of space.
int UNABLE_TO_PRECACHE_VIDEO_RESOURCES Indicates that an attempt to cache a video resource to the filesystem failed; the device may be out of space.
int UNABLE_TO_PREPARE_NATIVE_AD Indicates that there was an error while attempting to render a native ad.
int UNABLE_TO_RENDER_AD Indicates that there has been a failure to render an ad on screen.
int UNSPECIFIED_ERROR Indicates that the system is in unexpected state.
Public Constructors
AppLovinErrorCodes()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final int FETCH_AD_TIMEOUT

Indicates that the network conditions prevented the SDK from receiving an ad.

Constant Value: -102 (0xffffff9a)

public static final int INCENTIVIZED_NO_AD_PRELOADED

Indicates that the developer called for a rewarded video before one was available. Note: This code is only possible when working with rewarded videos.

Constant Value: -300 (0xfffffed4)

public static final int INCENTIVIZED_SERVER_TIMEOUT

Indicates that a reward validation requested timed out (usually due to poor connectivity). Note: This code is only possible when working with rewarded videos.

Constant Value: -500 (0xfffffe0c)

public static final int INCENTIVIZED_UNKNOWN_SERVER_ERROR

Indicates that an unknown server-side error occurred. Note: This code is only possible when working with rewarded videos.

Constant Value: -400 (0xfffffe70)

public static final int INCENTIVIZED_USER_CLOSED_VIDEO

Indicates that the user exited out of the ad early. You may or may not wish to grant a reward depending on your preference. Note: This code is only possible when working with rewarded ads.

Constant Value: -600 (0xfffffda8)

public static final int INVALID_URL

Indicates that a postback URL you attempted to dispatch was empty or nil.

Constant Value: -900 (0xfffffc7c)

public static final int NO_FILL

Indicates that no ads are currently eligible for your device.

Constant Value: 204 (0x000000cc)

public static final int NO_NETWORK

Indicates that the device had no network connectivity at the time of an ad request, either due to airplane mode or no service.

Constant Value: -103 (0xffffff99)

public static final int UNABLE_TO_PRECACHE_IMAGE_RESOURCES

Indicates that an attempt to cache an image resource to the filesystem failed; the device may be out of space.

Constant Value: -201 (0xffffff37)

public static final int UNABLE_TO_PRECACHE_RESOURCES

Indicates that an attempt to cache a resource to the filesystem failed; the device may be out of space.

Constant Value: -200 (0xffffff38)

public static final int UNABLE_TO_PRECACHE_VIDEO_RESOURCES

Indicates that an attempt to cache a video resource to the filesystem failed; the device may be out of space.

Constant Value: -202 (0xffffff36)

public static final int UNABLE_TO_PREPARE_NATIVE_AD

Indicates that there was an error while attempting to render a native ad.

Constant Value: -700 (0xfffffd44)

public static final int UNABLE_TO_RENDER_AD

Indicates that there has been a failure to render an ad on screen.

Constant Value: -6 (0xfffffffa)

public static final int UNSPECIFIED_ERROR

Indicates that the system is in unexpected state.

Constant Value: -1 (0xffffffff)

Public Constructors

public AppLovinErrorCodes ()