Linux Terminal Glossary
›
React Native & Mobile
React Native & Mobile
44 commands
npx @react-native-community/cli init MyApp
npx react-native start
npx react-native run-android
npx react-native run-ios
npx react-native log-android
npx react-native log-ios
npx react-native doctor
npx react-native config
adb devices
adb shell
adb install -r app.apk
adb uninstall com.example.app
adb reverse tcp:8081 tcp:8081
adb logcat -s ReactNativeJS
adb logcat -d -s AndroidRuntime:E
adb shell pm list packages -3
adb shell am force-stop com.example.app
adb shell dumpsys activity activities
adb pull /sdcard/file.txt .
adb push local.txt /sdcard/
adb reboot
adb wait-for-device
./gradlew assembleDebug
./gradlew installDebug
./gradlew bundleRelease
./gradlew lint
./gradlew test
./gradlew tasks
sdkmanager --list
emulator -list-avds
emulator -avd Pixel_10
aapt2 dump badging app.apk
maestro test .maestro/flow.yaml
maestro studio
maestro hierarchy
pod install
npx pod-install
xcodebuild -list
xcodebuild -workspace App.xcworkspace -scheme App -configuration Release build
xcrun simctl list devices
xcrun simctl boot "iPhone 16"
npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output android-release.bundle
fastlane init
fastlane run release
Search all 7,657 commands
instead.