Getting started with Smart Wallets on Expo
We would go through the steps to get your environment setup for using Smart Wallets within a React Native application on Expo.
Pre-requisites
- React Native version 0.76 or later
- iOS Minumum Deployment Target: 17.0
- Hermes and Fabric must be enabled (if using expo these are on by default)
- The Signer package requires you to be on React Native’s new architecture. For information on how to enable it in your Expo project, check their documentation.
- The Signer package is incompatible with Expo Go and as a result, you’d need to use a Development Build. Check the Expo Development Builds documentation for more information.
Create a new Expo project
If you don’t have an Expo project setup, you can create one using the following command:
Upgrade to the latest version of Expo
The first thing we need to do is make sure we’re on the latest version of Expo (SDK 52 or later). The reason for this is that we need React Native version 0.76 or higher because it has TextEncoder
natively supported.
For more information on upgrading an Expo project, check out the Expo documentation.
You can also use our quickstart template to get started quickly. Simply run
Then you want to upgrade all dependencies to match the new Expo SDK version.
Set up shims
Once we’ve got our Expo project setup and running, we need to setup a few shims so we can use crypto libraries in React Native.
Install shim dependencies
Register shim modules in Metro
Create or edit your metro.config.js
file in the root of your project so that it includes the following:
Register global shims
Import the following packages at the topmost entry point of your app so that libraries that depend on globals like crypto
have access to them.
If you are using expo-router
, add the imports in your topmost _layout.tsx
file in the app
directory. However if you are using a different navigation library (e.g. react-navigation
),
add the imports in your topmost App.tsx
file.
Install Smart Wallets
That’s it! Now you can install the packages you want from Smart Wallets and start building your React Native Account Abstraction app.
If you get an error about mismatched peer dependencies for React, you can use --legacy-peer-deps
in your install commands to avoid this error.
The @account-kit/react-native
package is an ESM module. As such, have to add the following to your tsconfig.json
’s compilerOptions
:
Add supporting dependencies
To ensure the Signer package works correctly, you’ll need to add the following dependencies to your project:
The zustand library uses import.meta
which is not supported in the latest version of Expo. To fix this, create a babel.config.js
file with the following content:
Set iOS minimum deployment target
Since we require a minimum deployment target of iOS 17, you will need to instruct Expo to set this during pre-build. First, install expo-build-properties
via:
Then add the plugin to your app.json
:
Run a Prebuild!
Now that we’ve got everything setup, we can run a prebuild to ensure the native modules are properly built and added to your project.
Run the app
Because the app is using native modules, you cannot run it with expo go and instead need to use development builds. You can do this with the android
and ios
commands:
Common Issues
NotSupportedError: Cannot set “location”., js engine: hermes
If you get this error, you can add the following to you app.json
within the expo
config:
Build error: androidx.browser:browser requires a higher Android Gradle Plugin (AGP) version or compileSdk version
If you get this error when running the Android app, you can fix this by updating the android/build.gradle
to include the following override:
Related issue: https://github.com/alchemyplatform/aa-sdk/issues/1534
npm install
fails due to mismatching peer dependencies
Our packages list a minimum version of React as 18.2.0, but the latest version of expo is on >=19. If you are using npm install
it’s likely you’ll get errors about peer dependencies. To force a consistent version of react, you can add the following to your package.json
:
Next steps
Now setup the signer!