CurrentApp.LicenseInformation 只允许我访问一次

CurrentApp.LicenseInformation only lets me access it once

我在调用 CurrentApp.LicenseInformation 时遇到问题,第一个调用是通过的,但如果我关闭应用程序并再次打开,下一个调用会锁定应用程序并关闭。但是,如果我等待 5-10 分钟并再次打开它,我可以再次访问它一次。

这是我打电话时的方法:

public bool HasPurchasedPlus()
{
    var licenseInformation = CurrentApp.LicenseInformation;

    var iap1 = licenseInformation.ProductLicenses["Package1"].IsActive;
    var iap2 = licenseInformation.ProductLicenses["Package2"].IsActive;

    return iap1 || iap2;
}

如能解决此问题,我们将不胜感激。 谢谢

系统更新后,此问题已消失。我不能肯定地说这是一个 OS 问题,但目前看来这是由于从系统读取数据时出现问题,因为它也会影响读取文件。