获取数数属性,distanId

This commit is contained in:
juncong lee 2025-09-05 17:58:34 +08:00
parent 158f7f50e6
commit 7046007a45
1 changed files with 6 additions and 2 deletions

View File

@ -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();
}
}