11 lines
274 B
C#
11 lines
274 B
C#
namespace Unity.Services.Analytics
|
|
{
|
|
partial class AnalyticsServiceInstance
|
|
{
|
|
public string GetAnalyticsUserID()
|
|
{
|
|
return !string.IsNullOrEmpty(CustomAnalyticsId) ? CustomAnalyticsId : InstallId.GetOrCreateIdentifier();
|
|
}
|
|
}
|
|
}
|