fix: 修复IDFA 接口缺失的问题

deeplink
胡宇飞 2024-04-03 12:46:28 +08:00
parent 53862fefda
commit 8f3aa1437d
1 changed files with 6 additions and 0 deletions

View File

@ -163,6 +163,12 @@ namespace Guru
if (string.IsNullOrEmpty(idfv)) return;
CacheUserProperty(Analytics.PropertyIDFV, idfv);
}
public static void SetIDFA(string idfa)
{
if (string.IsNullOrEmpty(idfa)) return;
CacheUserProperty(Analytics.PropertyIDFA, idfa);
}
/// <summary>