Optionalandroid?: AdaptyAndroidPurchaseParamsOptionalandroid?: AdaptyAndroidSubscriptionUpdateParameters// OLD (deprecated):
makePurchase(product, {
android: {
oldSubVendorProductId: 'old_product_id',
prorationMode: 'charge_prorated_price',
isOfferPersonalized: true
}
});
// NEW:
makePurchase(product, {
android: {
subscriptionUpdateParams: {
oldSubVendorProductId: 'old_product_id',
prorationMode: 'charge_prorated_price'
},
isOfferPersonalized: true, // Note: moved to upper level
}
});
Android purchase parameters