diff --git a/docs/PurchaseNonConsumable.md b/docs/PurchaseNonConsumable.md index 1e24625..1170392 100644 --- a/docs/PurchaseNonConsumable.md +++ b/docs/PurchaseNonConsumable.md @@ -18,7 +18,7 @@ All purchases go through the `PurchaseAsync` method and you must always `Connect /// Verify Purchase implementation /// Purchase details /// If an error occures during processing -Task PurchaseAsync(string productId, ItemType itemType, IInAppBillingVerifyPurchase verifyPurchase = null); +Task PurchaseAsync(string productId, ItemType itemType); ``` On Android you must call `FinalizePurchaseAsync` within 3 days when a purchase is validated. Please read the [Android documentation on Pending Transactions](https://developer.android.com/google/play/billing/integrate#pending) for more information. @@ -41,7 +41,7 @@ public async Task PurchaseItem(string productId) } //check purchases - var purchase = await billing.PurchaseAsync(productId, ItemType.InAppPurchase, payload); + var purchase = await billing.PurchaseAsync(productId, ItemType.InAppPurchase); //possibility that a null came through. if(purchase == null)