Play Billing Library 1.1 Release (2018-05-07)
Important changes
- Added support to specify a proration mode in
BillingFlowParamswhen upgrading/downgrading an existing subscription. - The
replaceSkusProrationboolean flag inBillingFlowParamsis no longer supported. UsereplaceSkusProrationModeinstead. launchBillingFlow()now triggers a callback for failed responses.
Behavior changes
Developers can set replaceSkusProrationMode in BillingFlowParams class
A ProrationMode provides further details on the type of proration when upgrading or downgrading a
user's subscription.
Kotlin
BillingFlowParams.newBuilder()
.setSku(skuId)
.setType(billingType)
.setOldSkus(oldSkus)
.setRepleaceSkusProrationMode(repleaceSkusProrationMode)
.build()
Java
BillingFlowParams.newBuilder()
.setSku(skuId)
.setType(billingType)
.setOldSkus(oldSkus)
.setRepleaceSkusProrationMode(repleaceSkusProrationMode)
.build();
Currently, Google Play supports following proration modes:
IMMEDIATE_WITH_TIME_PRORATION |
Replacement takes effect immediately, and the new expiration time will be prorated and credited or charged to the user. This is the current default behavior. |
IMMEDIATE_AND_CHARGE_PRORATED_PRICE |
Replacement takes effect immediately, and the billing cycle remains the same. The price for
the remaining period will be charged.
Note: This option is only available for subscription upgrade. |
IMMEDIATE_WITHOUT_PRORATION |
Replacement takes effect immediately, and the new price will be charged on next recurrence time. The billing cycle stays the same. |
replaceSkusProration is no longer supported in BillingFlowParams class
Developers used to be able to set a boolean flag to charge a prorated amount for a subscription
upgrade request. Given that we are supporting ProrationMode, which contains more detailed
proration instruction, this boolean flag is no longer supported.
launchBillingFlow() now triggers a callback for failed responses
The Billing Library will always trigger the PurhcasesUpdatedListener
callback and return a BillingResponse
asynchronously. The synchronous return value of BillingResponse
is kept as well.
Bug fixes
- Properly exits early in async methods when service is disconnected.
Builderparam objects no longer mutates built objects.- Issue 68087141:
launchBillingFlow()now trigger callback for failed responses.
Play Billing Library 1.0 Release (2017-09-19, Announcement)
Important changes
- Embedded billing permission inside library’s manifest. It's not necessary to add the
com.android.vending.BILLINGpermission inside Android manifest anymore. - New builder added to
BillingClient.Builderclass. - Introduced builder pattern for
SkuDetailsParamsclass to be used on methods to query SKUs. - Several API methods were updated for consistency (the same return argument names and order).
Behavior changes
BillingClient.Builder class
BillingClient.Builder
is now initialized via the newBuilder pattern:
mBillingClient = BillingClient.newBuilder(context).setListener(this).build();
launchBillingFlow method is now called using a BillingFlowParams class
To initiate the billing flow for an in-app purchase or subscription, the
launchBillingFlow()
method receives a
BillingFlowParams
instance initialized with parameters specific to the request:
BillingFlowParams.newBuilder().setSku(skuId)
.setType(billingType)
.setOldSkus(oldSkus)
.build();
// Then, use the BillingFlowParams to start the purchase flow
int responseCode = mBillingClient.launchBillingFlow(builder.build());
New way to query available products
Arguments for queryPurchaseHistoryAsync()
and querySkuDetailsAsync()
methods were wrapped into a Builder pattern:
SkuDetailsParams.Builder params = SkuDetailsParams.newBuilder();
params.setSkusList(skuList)
.setType(itemType);
mBillingClient.querySkuDetailsAsync(params.build(), new SkuDetailsResponseListener() {...})
The result is now returned via result code and a list of
SkuDetails
objects instead of previous wrapper class for your convenience and to be consistent across our API:
public void onSkuDetailsResponse(@BillingResponse int responseCode, List<SkuDetails> skuDetailsList)
Parameters order changed on onConsumeResponse() method
The order of arguments for onConsumeResponse
from the ConsumeResponseListener
interface has changed to be consistent across our API:
public void onConsumeResponse(@BillingResponse int responseCode, String outToken)
Unwrapped PurhaseResult object
PurchaseResult
has been unwraped to be consistent across our API:
void onPurchaseHistoryResponse(@BillingResponse int responseCode, List<Purchase> purchasesList)
Bug fixes
- No response code in PURCHASES_UPDATED Bundle
- Fix ProxyBillingActivity and PurchasesUpdatedListener issues during device rotation
Developer Preview 1 Release (2017-06-12, Announcement)
Developer preview launched, aimed to simplify the development process when it comes to billing, allowing developers to focus their efforts on implementing logic specific to the Android app, such as application architecture and navigation structure.
The library includes several convenient classes and features for you to use when integrating your Android apps with the In-app Billing API. The library also provides an abstraction layer on top of the Android Interface Definition Language (AIDL) service, making it easier for developers to define the interface between the app and the In-app Billing API.


