Android.DeviceDetectionPollInterval
Android.DeviceDetectionPollInterval
#Overview
name: Android.DeviceDetectionPollInterval
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
The number of seconds between polling for connected Android devices.\nDefault: 10
It is referenced in 2
C++ source files.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Developer/Android/AndroidDeviceDetection/Private/AndroidDeviceDetectionModule.cpp:49
Scope: file
Source code excerpt:
static int32 GAndroidDeviceDetectionPollInterval = 10;
static FAutoConsoleVariableRef CVarAndroidDeviceDetectionPollInterval(
TEXT("Android.DeviceDetectionPollInterval"),
GAndroidDeviceDetectionPollInterval,
TEXT("The number of seconds between polling for connected Android devices.\n")
TEXT("Default: 10"),
ECVF_Default
);
#Loc: <Workspace>/Engine/Plugins/Runtime/AndroidDeviceProfileSelector/Source/AndroidDeviceProfileCommandlets/Private/CreateAndroidPreviewDataFromADBCommandlet.cpp:111
Scope (from outer to inner):
file
function int32 UCreateAndroidPreviewDataFromADBCommandlet::Main
Source code excerpt:
// Decrease device detection poll time.
IConsoleVariable* const CVar = IConsoleManager::Get().FindConsoleVariable(TEXT("Android.DeviceDetectionPollInterval"));
if (CVar)
{
CVar->Set(1);
}
TSet<FString> AlreadyExported;