### Install node modules Source: https://github.com/dynamsoft/barcode-reader-react-native-samples/blob/main/README.md Commands to install project dependencies using either Yarn or npm. ```bash yarn install ``` ```bash npm install ``` -------------------------------- ### Navigate to a sample folder Source: https://github.com/dynamsoft/barcode-reader-react-native-samples/blob/main/README.md Example of navigating to a specific sample folder in a React Native CLI project. ```bash cd ScanBarcodes_FoundationalAPI ``` ```bash cd ScanBarcodes_ReadyToUseComponent ``` ```bash cd ScanDriversLicense ``` ```bash cd ScanVIN ``` -------------------------------- ### Prepare iOS project Source: https://github.com/dynamsoft/barcode-reader-react-native-samples/blob/main/README.md Commands to prepare the iOS project by installing CocoaPods dependencies. ```bash cd ios pod install ``` -------------------------------- ### Install ios-deploy Source: https://github.com/dynamsoft/barcode-reader-react-native-samples/blob/main/README.md Command to install the ios-deploy library for running React Native apps on physical iOS devices from the terminal. ```bash npx react-native run-ios --device ``` -------------------------------- ### Navigate to Expo sample folder Source: https://github.com/dynamsoft/barcode-reader-react-native-samples/blob/main/README.md Command to navigate to the Expo sample folder. ```bash cd ScanBarcodes_Expo ``` -------------------------------- ### Build and Run Android with Expo Source: https://github.com/dynamsoft/barcode-reader-react-native-samples/blob/main/README.md Command to build and run the Expo application on Android. ```bash npx expo run:android ``` -------------------------------- ### Build and Run Android Source: https://github.com/dynamsoft/barcode-reader-react-native-samples/blob/main/README.md Commands to build and run the React Native application on Android. ```bash # using npm ``` ```bash npm run android ``` ```bash # OR using Yarn ``` ```bash yarn android ``` -------------------------------- ### Build and Run iOS Source: https://github.com/dynamsoft/barcode-reader-react-native-samples/blob/main/README.md Commands to build and run the React Native application on iOS. ```bash # using npm ``` ```bash npm run ios ``` ```bash # OR using Yarn ``` ```bash yarn ios ``` -------------------------------- ### Build and Run iOS with Expo Source: https://github.com/dynamsoft/barcode-reader-react-native-samples/blob/main/README.md Command to build and run the Expo application on iOS. ```bash npx expo run:ios ``` -------------------------------- ### Generate native projects for Expo Source: https://github.com/dynamsoft/barcode-reader-react-native-samples/blob/main/README.md Command to generate the native Android and iOS folders for an Expo project. ```bash npx expo prebuild ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.