Files
UnrealEngineUWP/Engine/Source/Developer/EditorAnalyticsSession/EditorAnalyticsSession.Build.cs
sebastian nordgren 6f06eab225 SessionSummary analytics event is now sent from the out-of-process CrashReportClient. Currently communication is done through the local storage API in FPlatformMisc. As a result, many analytics fields that were being resolved only when sending analytics are now resolved on startup and stored temporarily.
EditorSessionSummarySender and EditorAnalyticsSession now live in their own module so they can be instantiated from the CrashReportClient.

#jira UETOOL-1825

#rb chris.gagnon, jamie.dale

[CL 9197613 by sebastian nordgren in Dev-Core branch]
2019-09-27 05:53:31 -04:00

19 lines
349 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class EditorAnalyticsSession : ModuleRules
{
public EditorAnalyticsSession( ReadOnlyTargetRules Target ) : base( Target )
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"Analytics"
}
);
}
}
}