Skip to content

Releases: BILDIT-Platform/react-native-bildit-flybuy

Release 2.3.3

05 Jun 18:12
Compare
Choose a tag to compare

Release 2.3.2

28 May 18:40
Compare
Choose a tag to compare
  • fix: revert minor version to 2.3.1 (65e3fcd)
  • fix: bump minor version to 2.3.2 (3f73c0b)
  • fix: Add missingDimensionStrategy for Flybuy SDK variants to prevent dependency resolution issues (f74f6fa)

Release 2.3.1

01 May 19:56
Compare
Choose a tag to compare
  • Update iOS FlyBuy to 2.9.1 (fe553c1)

Release 2.1.1

12 Aug 12:17
Compare
Choose a tag to compare
  • feat: upgrade iOS SDK to 2.6.9 (31e0e4f)
  • Merge pull request #51 from BILDIT-Platform/upgrade-ios-sdk-2.6.8 (abe4682)

Release 2.0.1

24 Mar 22:26
Compare
Choose a tag to compare
  • Upgrade FlyBuy iOS SDK to 2.6.8 (31ea002)

Release 2.0.0-beta.0

21 Mar 13:31
Compare
Choose a tag to compare
Release 2.0.0-beta.0 Pre-release
Pre-release
  • Revert version (e4a3972)
  • Update package version to 2.0.0 (737d8cf)
  • Upgrade example-app to RN 0.66.5 and android compileSdkVersion 33 (9b1f1f6)
  • Remove example/ios/Pods (22d8b83)
  • Upgrade development-app to RN 0.66.5 and android compileSdkVersion 33 (cbab907)
  • BILDIT-2111 Remove development app pods (8127c96)
  • BILDIT-2111 Upgrade the Flybuy SDK version (206dbbf)

Android specific change

//android/build.gradle

ext {
        buildToolsVersion = "33.0.0"
        minSdkVersion = 21
        compileSdkVersion = 33
        targetSdkVersion = 33
        kotlinVersion = "1.6.0" // <<--- add this line
        
    }

Release 1.0.4

21 Feb 22:16
Compare
Choose a tag to compare

Release 1.0.3

08 Feb 04:40
Compare
Choose a tag to compare

Fix #45 : Suppress New EventEmitter() warning

Release 1.0.1

13 Sep 21:54
Compare
Choose a tag to compare

What's New:

  • Support FlyBuy SDK 2.6.1
  • Add support for Creating Order using Site Partner Identifier
  • Add new types: PickupConfig and PickupTypeConfig

Breaking Change:

  • createOrder function now only need one parameter and it's a object.
    Before:

        FlyBuy.Core.Orders.createOrder(
           SITE_ID,
           NEW_PID,
           CUSTOMER_INFO
        )
    

    Now:

        FlyBuy.Core.Orders.createOrder({
           siteId: SITE_ID,
           pid: NEW_PID,
           customerInfo: CUSTOMER_INFO
        })
    

Release 0.4.11

17 Jun 01:12
Compare
Choose a tag to compare
  • Add official documentation link on the footer (#41) (46a72f5)
  • Add Background task support on notify configure (b85e2ec)
  • Add FlyBuy iOS SDK version 2.5.2 (b8b5933)