skip to Main Content

I have installed Android Studio via JetBrains Toolbox. Although I followed all the steps according to the documentation, react-native doctor complains about missing Android Studio.

Outcome from react-native doctor command

Context:

  • MacOS 14.5 (arm64)
  • Android Studio Jellyfish
  • JetBrains Toolbox 2.3.2.31487

2

Answers


  1. Chosen as BEST ANSWER

    I haven’t really tracked the issue. However, as a workaround, I uninstall Android Studio via JetBrains Toolbox and reinstall it using Homebrew.

    brew install --cask android-studio
    

  2. check if the android sdk path is set in ur env variable, the try reloading

    export ANDROID_HOME=<your-sdk-path>; export PATH=$PATH:$ANDROID_HOME/emulator:$ANDROID_HOME/tools:$ANDROID_HOME/tools/bin:$ANDROID_HOME/platform-tools; source ~/.zshrc

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search