Menu

Preset Event Properties

Developers can use this plugin to access preset event properties information.

Function

export function retrievePresetProperties():Object;

Sample Code

let presetProperties = SolarEngine.retrievePresetProperties();

const object = presetProperties as { _package_name: string; _app_name: string, _screen_height: number};
console.log("_package_name:" + object._package_name);
console.log("_app_name:" + object._app_name);
console.log("_screen_height:" + object._screen_height);

Parameter description:

Parameter Description
_appkeyThe AppKey assigned by SolarEngine (SE)
_distinct_idDevice ID generated by SE (IDFV)
_account_idThe account ID passed in by the developer through the login interface
_visitor_idThe visitor ID passed in by the developer through the setVisitorID interface
_session_idThe session ID generated within SE for each cold start
_uuidThe unique UUID generated during SE installation (only supported on the Android platform)
_imeiDevice IMEI (only supported on Android platform)
_imei2Device IMEI2(only supported on Android platform)
_gaidDevice GAID(only supported on Android platform)
_oaidDevice OAID(only supported on Android platform)
_idfaDevice IDFA(only supported on IOS platform)
_idfvDevice IDFV(only supported on IOS platform)
_android_idDevice AndroidId(only supported on Android platform)
_uaDevice UA
_languageThe language of the device's system settings
_time_zoneDevice time zone
_manufacturerDevice manufacturer
_platformThe device platform tag,1 for Android and 2 for iOS

_os_versionDevice system version
_screen_heightScreen height
_screen_widthScreen width
_densityScreen density(only supported on Android platform)
_device_modelDevice model
_device_typeDevice type, 3: iphone, 4: ipad, 0: other
_app_versionApplication version number
_app_version_codeApplication build number
_package_nameApplication package name
_app_nameApplication name
_channelChannel name(IOS Default AppStore)
_lib Fixed field: 1: Android, 2: iOS
_lib_versionSDK version number


Previous
Set Public Event Properties
Next
Event Reporting
Last modified: 2024-12-05Powered by