我有一个 30 天后过期的应用程序。之后,您将收到一条过期消息并购买。我必须购买的代码是:
LicenseInformation licenseInformation = CurrentApp.LicenseInformation;
if (licenseInformation.IsTrial)
{
try
{
await CurrentApp.RequestAppPurchaseAsync(false);
出于某种原因,有时什么也没发生,有时我会收到一条消息,该应用程序不再可用。
有人知道为什么不要求他们购买吗?