Unclaimed project
Are you a maintainer of flutter_inapp_purchase? Claim this project to take control of your public changelog and roadmap.
Changelog
Flutter In App Purchase plugin that confirms OpenIAP
Parameter naming: RequestPurchaseProps.inApp() and RequestPurchaseProps.subs() now use apple/google fields instead of ios/android
// Before (8.1.x)
RequestPurchaseProps.inApp((
ios: RequestPurchaseIosProps(sku: 'product_id'),
android: RequestPurchaseAndroidProps(skus: ['product_id']),
))
// After (8.2.0)
RequestPurchaseProps.inApp((
apple: RequestPurchaseIosProps(sku: 'product_id'),
google: RequestPurchaseAndroidProps(skus: ['product_id']),
useAlternativeBilling: null,
))
AlternativeBillingModeAndroid: Use BillingProgramAndroid instead
AlternativeBillingModeAndroid.alternativeOnly -> BillingProgramAndroid.ExternalOfferAlternativeBillingModeAndroid.userChoice -> BillingProgramAndroid.UserChoiceBillingalternativeBillingModeAndroid parameter: Use enableBillingProgramAndroid in initConnection() instead
openiap-gql: 1.3.10 -> 1.3.11