MoneyKit Connect is a quick and secure way to link bank accounts from within your app. The drop-in framework handles connecting to a financial institution in your app (credential validation, multi-factor authentication, error handling, etc.) without passing sensitive information to your server
Note
Make sure you have the expo-build-properties plugin installed in your project.
npx expo install @moneykit/connect-react-native
You will also need to specify the deployment target for iOS and a minimum SDK version for Android in your app.json
or app.config.js
file:
"plugins": [
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "14.0"
},
"android": {
"minSdkVersion": 26,
},
}
]
]
Important
This package cannot be used in the "Expo Go" app because it requires custom native code.
Rebuild your app as described in the "Adding custom native code" guide.
npx expo prebuild
For bare React Native projects, you must ensure that you have installed and configured the expo
package before continuing.
npm install @moneykit/connect-react-native
Run npx pod-install
after installing the npm package.
No additional set up necessary.
A simple example of the Connect SDK can be found here