Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.5.0

* Updates Google Play Billing Library from 7.1.1 to 8.0.0.
* **BREAKING CHANGES**:
* Removes `queryPurchaseHistory` and its wrapper `queryPurchaseHistoryAsync`. Use `queryPurchases` instead.
* Adds support for `subResponseCode` in `BillingResultWrapper`.
* Adds support for `oneTimePurchaseOfferDetailsList` in `ProductDetailsWrapper`.
* Adds support for `unfetchedProductList` in `ProductDetailsResponseWrapper` to handle product IDs that could not be fetched.

## 0.4.0+8

* Bumps com.android.tools.build:gradle from 8.12.1 to 8.13.1.
Expand Down
5 changes: 3 additions & 2 deletions packages/in_app_purchase/in_app_purchase_android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ Using the Alternative billing only feature requires Google Play app configuratio

[Google Play documentation for Alternative billing](https://developer.android.com/google/play/billing/alternative)

## Migrating to 0.3.0
To migrate to version 0.3.0 from 0.2.x, have a look at the [migration guide](migration_guide.md).
## Migrating to 0.5.0
To migrate to version 0.5.0 from 0.4.x or 0.3.0 from 0.2.x, have a look at the
[migration guide](migration_guide.md).

[1]: https://pub.dev/packages/in_app_purchase
[2]: https://flutter.dev/to/endorsed-federated-plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ android {

dependencies {
implementation("androidx.annotation:annotation:1.9.1")
implementation("com.android.billingclient:billing:7.1.1")
implementation("com.android.billingclient:billing:8.0.0")
testImplementation("junit:junit:4.13.2")
testImplementation("org.json:json:20250517")
testImplementation("org.mockito:mockito-core:5.21.0")
Expand Down
Loading
Loading