Starting November 2023, Android Billing Client V4 is no longer supported, requiring app developers using the plugin to migrate to 0.3.0. Version 0.3.0 introduces breaking changes to the API as a result of changes in the underlying Google Play Billing Library. For context around the changes see the recent changes to subscriptions in Play Console and the Google Play Billing Library migration guide.
SKUs have been replaced with products. For example, the SkuDetailsWrapper
class has been replaced by ProductDetailsWrapper
, and the SkuType
enum has been replaced by ProductType
.
Products are used to represent both in-app purchases (also referred to as one-time purchases) and subscriptions. There are a few changes to the data model that are important to note.
Previously, an SKU of SkuType.subs
would contain a freeTrialPeriod
, introductoryPrice
and some related properties. In the new model, this has been replaced by a more generic approach. A subscription product can have multiple pricing phases, each with its own price, subscription period etc. This allows for more flexibility in the pricing model.
In the next section we will look at how to migrate code that uses the old model to the new model. Instead of listing all possible use cases, we will focus on three: getting the price of a one time purchase, and handling both free trials and introductory prices for subscriptions. Other use cases can be migrated in a similar way.
Below code shows how to get the price of a one time purchase before and after the migration. Other properties can be obtained in a similar way.
Code before migration:
SkuDetailsWrapper sku; if (sku.type == SkuType.inapp) { String price = sku.price; }
Code after migration:
/// Handles the one time purchase price of a product. void handleOneTimePurchasePrice(ProductDetails productDetails) { if (productDetails is GooglePlayProductDetails) { final ProductDetailsWrapper product = productDetails.productDetails; if (product.productType == ProductType.inapp) { // Unwrapping is safe because the product is a one time purchase. final OneTimePurchaseOfferDetailsWrapper offer = product.oneTimePurchaseOfferDetails!; final String price = offer.formattedPrice; } } }
Below code shows how to handle free trials for subscriptions before and after the migration. As subscriptions can contain multiple offers, each containing multiple price phases, the logic is more involved.
Code before migration:
SkuDetailsWrapper sku; if (sku.type == SkuType.subs) { if (sku.freeTrialPeriod.isNotEmpty) { // Free trial period logic. } }
Code after migration:
/// Handles the free trial period of a subscription. void handleFreeTrialPeriod(ProductDetails productDetails) { if (productDetails is GooglePlayProductDetails) { final ProductDetailsWrapper product = productDetails.productDetails; if (product.productType == ProductType.subs) { // Unwrapping is safe because the product is a subscription. final SubscriptionOfferDetailsWrapper offer = product.subscriptionOfferDetails![productDetails.subscriptionIndex!]; final List<PricingPhaseWrapper> pricingPhases = offer.pricingPhases; if (pricingPhases.first.priceAmountMicros == 0) { // Free trial period logic. } } } }
Below code shows how to handle introductory prices for subscriptions before and after the migration. As subscriptions can contain multiple offers, each containing multiple price phases, the logic is more involved.
Code before migration:
SkuDetailsWrapper sku; if (sku.type == SkuType.subs) { if (sku.introductoryPriceAmountMicros != 0) { // Introductory price period logic. } }
Code after migration:
/// Handles the introductory price period of a subscription. void handleIntroductoryPricePeriod(ProductDetails productDetails) { if (productDetails is GooglePlayProductDetails) { final ProductDetailsWrapper product = productDetails.productDetails; if (product.productType == ProductType.subs) { // Unwrapping is safe because the product is a subscription. final SubscriptionOfferDetailsWrapper offer = product.subscriptionOfferDetails![productDetails.subscriptionIndex!]; final List<PricingPhaseWrapper> pricingPhases = offer.pricingPhases; if (pricingPhases.length >= 2 && pricingPhases.first.priceAmountMicros < pricingPhases[1].priceAmountMicros) { // Introductory pricing period logic. } } } }
launchPriceChangeConfirmationFlow
The method launchPriceChangeConfirmationFlow
has been removed. Price changes are no longer handled by the application but are instead handled by the Google Play Store automatically. See subscription price changes for more information.