Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmontemagno committed Dec 13, 2023
1 parent aa13456 commit 01dffc8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,15 @@ Get started by reading through the [In-App Billing Plugin documentation](https:/
* Android: `AcknowledgePurchaseAsync` is now `FinalizePurchaseAsync`
* All: There are now "Extras" for all products that give you back tons of info for each platform


If you receive an error in Google Play you may need to add this to your AndroidManifest.xml inside the application node:

```xml
<meta-data
android:name="com.google.android.play.billingclient.version"
android:value="6.0.1" />
```

### Pending Transactions:
* If the result of PurchaseAsync is PurchaseState.PaymentPending, store the order details locally and inform the user that they will have access to the product when the payment completes
* When the user starts the app (and/or visits a particular page), if the stored PurchaseState is PaymentPending, call GetPurchasesAsync and query the result for a purchase that matches the stored purchase.
Expand Down

0 comments on commit 01dffc8

Please sign in to comment.