Amazon Developer

as

Settings
Sign out
Notifications
Alexa
Amazon Appstore
Ring
AWS
Documentation
Support
Contact Us
My Cases
Get Started
Design and Develop
Publish
Reference
Support
Skip to main content

1.1 Update core dependencies

Replace the relevant sections of your package.json dependencies with the new versions for RN 0.83.
Required dependencies for RN83 The following dependencies are required for RN83:
  1. @react-native-community/cli: @amazon-devices/kepler-cli-platform requires version 11.3.2 to register the vega build command. Removing it causes npm run build:release to fail with “Unrecognized command vega build”.
  2. jest dependencies:jest, babel-jest, ts-jest, and @types/jest must ALL be v29. Mixing v28 and v29 causes ERESOLVE unable to resolve dependency tree.
  3. react overrides: If you have an overrides section with "react", update it to "19.2.0":

1.2 Update third-party packages

Update all third-party packages to their RN 0.83 compatible versions. See Supported Libraries and Services for the complete version table. Example of common packages

1.3 Additional library updates

Some libraries have new requirements for React Native 0.83:
  • react-native-reanimated requires react-native-worklets. If your app uses @amazon-devices/react-native-reanimated, you must also add @amazon-devices/react-native-worklets as a dependency. This is a new required runtime dependency in reanimated 4.0.0. Without it, the app crashes on launch with no clear error message.
  • @amazon-devices/shopify__flash-list is not compatible with RN 0.83. Use the upstream @shopify/flash-list@2.1.0 package directly instead. The wrapped version has a module resolution error in RN 0.83’s split-bundle system.
  • kepler-ui-components must be 3.0.0+. Version 2.x bundles its own copy of react-native with a transitive dependency, causing Jest test failures with Flow/ESM parse errors. This applies to all apps using kepler-ui-components, not just carousel users.

1.4 Install dependencies

Run npm install to receive all other dependencies.
Last modified on July 9, 2026