Skip to content

Instantly share code, notes, and snippets.

@smorcuend
Last active September 23, 2021 09:59
Show Gist options
  • Save smorcuend/2f37c833f72716724099314c524b99a2 to your computer and use it in GitHub Desktop.
Save smorcuend/2f37c833f72716724099314c524b99a2 to your computer and use it in GitHub Desktop.
React Native setup on Debian (10+) with Expo
# Requirements
# - Node.js LTS release
# - Git
# Install ADB(Android Debug Tool) and Fastboot
sudo apt update && sudo apt install android-tools-adb android-tools-fastboot
adb --help
# Enable USB Debugging on Android
# Connect Your Phone to Debian
adb devices
# You’ll have a message requesting access. Accept. Run the command again on your computer to confirm that they’re connected.
# Install the cli tools
npm install --global expo-cli
# Create project with expo
expo init my-app
cd my-app
expo start
# Important! Disable your Firewall on expo range ports availables
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment