React Native adb reverse ENOENT

前端 未结 7 2121
悲&欢浪女
悲&欢浪女 2020-12-01 04:59

I am trying to get React-Native to work with Android V4.2.2 (Genymotion) but I am unable to test the app on the Emulator. When I ran react-native run-andr

相关标签:
7条回答
  • 2020-12-01 05:55

    I got the same issue. I updated my ANDROID_HOME env variable again it worked for me.

    Follow this React-native android-setup documentation

    ex:

    export ANDROID_HOME=~/Library/Android/sdk
    

    Windows:

    set ANDROID_HOME=c:/Users/whoever/AppData/Local/Android/Sdk
    

    macOS Mojave and earlier or bash users:

    1 - Open your bash profile:

    open .bash_profile
    

    Add this to your bash_profile:

     export ANDROID_SDK=/Users/<your_computer_name>/Library/Android/sdk
     export PATH=/Users/<your_computer_name>/Library/Android/sdk/platform-tools:$PATH
    

    Save and close

    Compile your changes

    source ~/.bash_profile
    

    For macOS Catalina and zsh users:

    Starting with macOS Catalina, your Mac uses zsh as the default login shell and interactive shell. You can make zsh the default in earlier versions of macOS as well.

    On your Mac:

    Open your .zshrc file:

    open ~/.zshrc
    

    If .zshrc file not exist, you need to create one using touch & open.

    touch ~/.zshrc
    

    Add this to your .zshrc file

    export ANDROID_SDK=/Users/<your_computer_name>/Library/Android/sdk
    export PATH=/Users/<your_computer_name>/Library/Android/sdk/platform-tools:$PATH
    

    Save and close

    Compile your changes

    source ~/.zshrc
    

    Edit: Updated answer for macOS Catalina and zsh users.

    0 讨论(0)
提交回复
热议问题