您如何在试用应用程序中实现“购买”链接?
您是否使用与实施“费率”链接相同的方法?
非常感谢。
您如何在试用应用程序中实现“购买”链接?
您是否使用与实施“费率”链接相同的方法?
非常感谢。
使用MarketplaceDetailTask
启动器:
MarketplaceDetailTask marketplaceDetailTask = new MarketplaceDetailTask();
marketplaceDetailTask.Show();
看:
首先,您必须在您的开发人员帐户中将该购买注册为应用内产品,然后使用它...
public static LicenseInformation licenseInformation;
if (!App.licenseInformation.ProductLicenses["productid"].IsActive)
{
try
{
// The user doesn't own this feature, so
// show the purchase dialog.
await CurrentApp.RequestProductPurchaseAsync("productid", false);
// the in-app purchase was successful
}
catch (Exception)
{
// The in-app purchase was not completed because
// an error occurred.
}
}
else
{
// The user already owns this feature.
}
}