Navigation
API > API/Plugins > API/Plugins/GoogleARCoreBase
| Name | EGoogleARCoreAvailability |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/AR/Google/GoogleARCore/Source/GoogleARCoreBase/Public/GoogleARCoreTypes.h |
| Include Path | #include "GoogleARCoreTypes.h" |
Syntax
enum EGoogleARCoreAvailability
{
UnknownError = 0,
UnknownChecking = 1,
UnknownTimedOut = 2,
UnsupportedDeviceNotCapable = 100,
SupportedNotInstalled = 201,
SupportedApkTooOld = 202,
SupportedInstalled = 203,
}
Values
| Name | Remarks |
|---|---|
| UnknownError | An internal error occurred while determining ARCore availability. |
| UnknownChecking | ARCore is not installed, and a query has been issued to check if ARCore is is supported. |
| UnknownTimedOut | ARCore is not installed, and the query to check if ARCore is supported timed out. |
| UnsupportedDeviceNotCapable | ARCore is not supported on this device. |
| SupportedNotInstalled | The device and Android version are supported, but the ARCore APK is not installed. |
| SupportedApkTooOld | The device and Android version are supported, and a version of the ARCore APK is installed, but that ARCore APK version is too old. |
| SupportedInstalled | ARCore is supported, installed, and available to use. |