Last active
September 23, 2021 09:59
-
-
Save smorcuend/2f37c833f72716724099314c524b99a2 to your computer and use it in GitHub Desktop.
React Native setup on Debian (10+) with Expo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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