parent
a9a438b288
commit
d3028d9e3b
|
|
@ -29,7 +29,7 @@ namespace Guru
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
UnityEngine.Debug.Log($"{TAG} --- Send Adjust Event: {eventName}({tokenID})");
|
||||||
return new AdjustEvent(tokenID);
|
return new AdjustEvent(tokenID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -631,11 +631,13 @@ namespace Guru
|
||||||
if (orderData.orderType == 1)
|
if (orderData.orderType == 1)
|
||||||
{
|
{
|
||||||
// sub_pruchase : Firebase + Guru + Adjust
|
// sub_pruchase : Firebase + Guru + Adjust
|
||||||
|
Debug.Log($"{TAG} --- {productId}:{usdPrice} report SubPurchase");
|
||||||
SubPurchase(usdPrice, productId, orderId, orderDate);
|
SubPurchase(usdPrice, productId, orderId, orderDate);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// iap_purchase : Firebase + Guru + Adjust
|
// iap_purchase : Firebase + Guru + Adjust
|
||||||
|
Debug.Log($"{TAG} --- {productId}:{usdPrice} report IAPPurchase");
|
||||||
IAPPurchase(usdPrice, productId, orderId, orderDate);
|
IAPPurchase(usdPrice, productId, orderId, orderDate);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,6 @@
|
||||||
|
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
namespace Guru
|
namespace Guru
|
||||||
{
|
{
|
||||||
using System;
|
using System;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue