Skip to content

Commit

Permalink
Update PurchaseNonConsumable.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmontemagno authored Dec 22, 2023
1 parent 88cc126 commit beb7bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/PurchaseNonConsumable.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Task<InAppBillingPurchase> PurchaseAsync(string productId, ItemType itemType, st

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.

* iOS: In version 4 we auto finalized all transactions and after testing I decided to keep this feature on in 5/6... you can no turn that off in your iOS application with `InAppBillingImplementation.FinishAllTransactions = false;`. This would be required if you are using consumables and don't want to auto finish. You will need to finalize manually with `FinalizePurchaseAsync`.
* iOS: In version 4 we auto finalized all transactions and after testing I decided to keep this feature on in 5/6... you can no turn that off in your iOS application with `InAppBillingImplementation.FinishAllTransactions = false;`. This would be required if you are using consumables and don't want to auto finish. You will need to finalize manually with `FinalizePurchaseAsync` or `FinalizePurchaseOfProductAsync` based on if you have a transaction id or not.


Example:
Expand Down

0 comments on commit beb7bf2

Please sign in to comment.