Skip to main content

React Native CLI Installation

Use this guide for bare React Native CLI apps.

Requirements

  • React Native >=0.75
  • React Native New Architecture enabled
  • Android minSdk 24+
  • iOS deployment target 13.0+

1. Install package

npm install @saltware/fidbek-react-native
# or
yarn add @saltware/fidbek-react-native

2. Enable New Architecture

Android

In android/gradle.properties:

newArchEnabled=true

iOS

Enable New Architecture in your RN iOS build setup (RCT_NEW_ARCH_ENABLED=1).

3. Install iOS pods

cd ios
pod install

4. Build and run

npx react-native run-ios
npx react-native run-android

Autolinking behavior

  • No manual package registration is required
  • No custom Metro config is required
  • No custom Babel config is required

Next: React Native Configuration