调整adjust关联FB时的逻辑
parent
b2248376b7
commit
5976d3e1f1
|
|
@ -18,7 +18,7 @@ public class AdjustInitTool
|
|||
}
|
||||
}
|
||||
public const string FB_APP_ID_STRING = "755605353818089";
|
||||
public string Adid;
|
||||
public string Adid = string.Empty;
|
||||
|
||||
public void InitAdjustSDK(string appToken)
|
||||
{
|
||||
|
|
@ -27,7 +27,9 @@ public class AdjustInitTool
|
|||
{
|
||||
AdjustSdk.AdjustConfig adjustConfig = new($"{appToken}", AdjustSdk.AdjustEnvironment.Sandbox);
|
||||
adjustConfig.LogLevel = AdjustSdk.AdjustLogLevel.Verbose;
|
||||
#if SDK_FIREBASE
|
||||
adjustConfig.FbAppId = $"{FB_APP_ID_STRING}";
|
||||
#endif
|
||||
AdjustSdk.Adjust.InitSdk(adjustConfig);
|
||||
AdjustSdk.Adjust.GetAdid(adid =>
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue