You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Added AppId, AppVersion and UserId as FEditorAnalyticSession members and updated FEditorSessionSummaryWriter to write them. - Changed FEngineAnalytics::GetProvider() to return IAnalyticsProviderET rather than IAnalyticsProvider. - Updated FEditorSessionSummarySender to embed the AppId/AppVersion/UserId as attribute when sending the summary event and also configured the AnalyticsProvider to use the SessionID/AppID/AppVersion/UserID of the event rather than the current one. - Added a function to return the current IAnalyticProviderET configuration. #rb Wes.Hunt Edigrated 11445334 and 11459406. #ROBOMERGE-SOURCE: CL 11512055 in //UE4/Release-4.25/... #ROBOMERGE-BOT: RELEASE (Release-4.25 -> Release-4.25Plus) (v654-11333218) [CL 11512070 by patrick laflamme in 4.25-Plus branch]
20 lines
359 B
C#
20 lines
359 B
C#
// Copyright 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",
|
|
"AnalyticsET"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|