fix:1、修复bug。 2、1.0.8版本提审

This commit is contained in:
2026-05-15 11:09:47 +08:00
parent ee55c03120
commit 978797b678
121 changed files with 67129 additions and 66253 deletions
+18
View File
@@ -386,6 +386,24 @@ public class PurchasingManager
{ IAPPayManager.PRODUCT_VIP_MONTH, "1" },
{ IAPPayManager.PRODUCT_VIP_YEAR, "2" },
};
public static void SetShopMapValue()
{
var list = ConfigSystem.GetConfig<Paidcoins>();
if (list is not { Count: > 0 }) return;
foreach (var paidcoin in list)
{
if (string.IsNullOrEmpty(paidcoin.SKU))
continue;
if (_shopProductMap.ContainsKey(paidcoin.SKU))
{
_shopProductMap[paidcoin.SKU] = (paidcoin.id - 1).ToString();
}
}
}
public static void SendEventClickByName(string name, string type)