github adaptyteam/AdaptySDK-React-Native v3.8.2

latest releases: v3.11.0, v3.10.0
one month ago
  • Migrated to PBL v7
  • Added support for obfuscatedProfileId and obfuscatedAccountId on Android
  • Fixed support for Xcode 26

⚠️ Breaking Changes

  • Deprecated previous MakePurchaseParamsInput structure:
// 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
        obfuscatedAccountId: 'account_123',
        obfuscatedProfileId: 'profile_456'
    }
});

Don't miss a new AdaptySDK-React-Native release

NewReleases is sending notifications on new releases.