Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 570 Bytes

File metadata and controls

19 lines (15 loc) · 570 Bytes

Breez Liquid SDK release notes can be found at breez-sdk-liquid/releases

[TBD]

BREAKING CHANGES

  • initialize() is now FlutterBreezLiquid.init()
  • BindingLiquidSdk renamed to BreezSdkLiquid
  • If your app uses a Notification Service Extension (NSE), you may need to re-add the SDK’s NSE source files to the Compile Sources build phase of your NSE target.

Migration

// Before
await initialize();
BindingLiquidSdk sdk;

// After  
await FlutterBreezLiquid.init();
BreezSdkLiquid sdk;