fix: 清除非必要的中台属性上报

Signed-off-by: huyufei <yufei.hu@castbox.fm>
胡宇飞 2024-08-11 17:31:32 +08:00
parent 678ae17048
commit 4adffcd4a7
1 changed files with 0 additions and 14 deletions

View File

@ -7,8 +7,6 @@ namespace Guru
/// </summary>
public partial class Analytics
{
#region Update all neccessary properties
//---------------- 设置所有必要的属性 ---------------------
@ -147,13 +145,6 @@ namespace Guru
_propertiesManager.ReportIDFA(idfa);
}
public static void SetGuruSdkVersion(string sdkVersion)
{
_propertiesManager.ReportGuruSdkVersion(sdkVersion);
}
#endregion
@ -302,11 +293,6 @@ namespace Guru
_guruEventDriver.AddProperty(Analytics.PropertyIDFA, idfa);
_firebaseEventDriver.AddProperty(Analytics.PropertyIDFA, idfa);
}
public void ReportGuruSdkVersion(string sdkVersion)
{
_guruEventDriver.AddProperty(Analytics.PropertyGuruSdkVersion, sdkVersion);
_firebaseEventDriver.AddProperty(Analytics.PropertyGuruSdkVersion, sdkVersion);
}
}
#endregion