Release Notes
🚀 Aerosync React Native SDK v3.0.1
Release Date: May 05, 2025
✨ New Feature
- Embedded Bank View (Optional)
You can now embed a list of Aerosync-supported banks directly into your webpage using the new embedded view feature. This offers a smoother and more integrated user experience.
Learn more here: https://dev.aero.inc/docs/embedded-view-1- We’ve added a refreshed demo application to make local testing faster and easier. https://github.com/Aeropay-inc/aerosync-react-native-sdk/tree/main/demo/syncReactNativeCLI
- You now have the flexibility to pass custom WebView props directly using customWebViewProps.
Reference: https://github.com/react-native-webview/react-native-webview/blob/master/docs/Reference.mdreact-native-webview
has been added as a peer dependency ofaerosync-react-native-sdk
.🐛 Bug Fixes
- General code cleanup and several minor bug fixes for better performance and stability.
⚠️ Breaking Changes (for v2.0.6 and earlier)
<BankLink>
has been renamed to<AeroSyncWidget>
— update your code to reflect this change.react-native-webview
will no longer be automatically installed withaerosync-react-native-sdk
.
You must install it manually:This change improves flexibility and avoids version conflicts with your project's existing dependencies.npm install react-native-webview
- If you previously used custom WebView props (e.g., limitsNavigationsToAppBoundDomains), please ensure you now pass them via customWebViewProps.
Before:After:<BankLink ... limitsNavigationsToAppBoundDomains = {true} }}></BankLink>
<AeroSyncWidget ... customWebViewProps={{ style: { marginTop: 30, backgroundColor: isDarkTheme ? '#000000' : '#FFFFFF' }, limitsNavigationsToAppBoundDomains: true }} />
- The
style
prop has been removed from widget props. You can now direcly handle the styles from your application.<BankLink ... ̶ ̶ ̶ ̶s̶t̶y̶l̶e̶=̶{̶{̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶w̶i̶d̶t̶h̶:̶ ̶'̶1̶0̶0̶%̶'̶,̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶h̶e̶i̶g̶h̶t̶:̶ ̶'̶1̶0̶0̶%̶'̶,̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶o̶p̶a̶c̶i̶t̶y̶:̶ ̶1̶,̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶b̶g̶C̶o̶l̶o̶r̶:̶ ̶'̶#̶F̶F̶F̶F̶F̶F̶'̶,̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶ ̶}̶}̶>̶ }}></BankLink>
Updated about 6 hours ago