获取数数属性,distanId
This commit is contained in:
parent
158f7f50e6
commit
7046007a45
|
@ -2,11 +2,13 @@ using System;
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using AdjustSdk;
|
||||
using AnyThinkAds.ThirdParty.LitJson;
|
||||
using EFSDK;
|
||||
using Firebase.RemoteConfig;
|
||||
using GoogleMobileAds.Api;
|
||||
using Newtonsoft.Json;
|
||||
using ThinkingAnalytics;
|
||||
using ThinkingData.Analytics;
|
||||
using UnityEngine;
|
||||
using WZ;
|
||||
|
||||
|
@ -785,7 +787,8 @@ public class AppSDKManager : D_MonoSingleton<AppSDKManager>
|
|||
{
|
||||
return "GetSSDistinctId";
|
||||
}
|
||||
return ThinkingAnalyticsAPI.GetDistinctId();;
|
||||
LoggerUtils.Debug("GetSSDistinctId:"+TDAnalytics.GetDistinctId());
|
||||
return TDAnalytics.GetDistinctId();
|
||||
}
|
||||
|
||||
public string GetSSSuperProperties()
|
||||
|
@ -795,7 +798,8 @@ public class AppSDKManager : D_MonoSingleton<AppSDKManager>
|
|||
return "GetSSSuperProperties";
|
||||
}
|
||||
|
||||
var superProperties = ThinkingAnalyticsAPI.GetSuperProperties();
|
||||
var superProperties = TDAnalytics.GetSuperProperties();
|
||||
LoggerUtils.Debug("GetSSDistinctId:" + JsonMapper.ToJson(superProperties));
|
||||
return superProperties == null ? "" : superProperties.ToString();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue