Skip to content Skip to sidebar Skip to footer

/bin/sh: Adb: Command Not Found

When I try to run my react native app on my device, I get the following message /bin/sh: adb: command not found. The app still runs on my phone but I can't reload it or remote debu

Solution 1:

please try:

export ANDROID_HOME=/Users/{yourusername}/Library/Android/sdk
export PATH=$ANDROID_HOME/platform-tools:$PATH
export PATH=$ANDROID_HOME/tools:$PATH

Post a Comment for "/bin/sh: Adb: Command Not Found"