Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Nox App Player not connect with Android Studio

command not execute

Now I am going to command prompt and go to the bin folder under the installation path of Nox App Player, and I input this command: nox_adb.exe connect 127.0.0.1:62001.

enter image description here

like image 888
parvat Avatar asked Oct 12 '16 17:10

parvat


People also ask

How to install NOx App Player on Android Studio?

Start Android Studio and Nox App 10. Now in cmd go to the bin folder under the installation path of Nox App Player, input this command: nox_adb.exe connect 127.0.0.1:62001. You will see a successfully connected notice in cmd. nox_adb.exe connect 127.0.0.1:62001.

How to enable USB debugging in NOx App Player?

Start Nox App Player, go to Nox system settings >> turn root mode on >> save changes and restart Nox 4. Go to Android settings in Nox >> About Tablet >> Keep clicking Build number until it shows that you are now a developer >> go back to Android settings and you will find the developer options now. 5. Go to developer options >> tick USB debugging

How do I enable developer options on my NOx player?

Run the Nox player go to settings (Payer settings) and enable Root mode. (Will require a restart) When Nox Player starts again go to Android settings > About tablet > click on Build Number 7 times to unlock Developer Options (You know the drill right?) Done!

How to change the phone model supported by noxplayer?

Click on the “ Settings ” button on the upper right and select “ Phone model & Internet ” to choose a supported phone model 4. Click “ Save settings ” and restart NoxPlayer If the above-mentioned solution does not work, please join our following communities and contact us for help: Supporting Email: [email protected]


1 Answers

You need to find the correct port and use it. I faced the same problem so here is what I did.

  1. Kill the server:

    nox_adb.exe kill-server
    
  2. Now try to connect on any port number, say, 62001:

    C:\Program Files (x86)\Nox\bin>nox_adb.exe connect 127.0.0.1:62001
    * daemon not running. starting it now on port 5037 *
    * daemon started successfully *
    unable to connect to 127.0.0.1:62001:62001
    
  3. Now try to use port 5037 as mentioned in the output above:

    C:\Program Files (x86)\Nox\bin>nox_adb.exe kill-server
    C:\Program Files (x86)\Nox\bin>nox_adb.exe connect 127.0.0.1:5037
    * daemon not running. starting it now on port 5037 *
    * daemon started successfully *
    connected to 127.0.0.1:5037
    

It should work fine then.

like image 102
kundan Avatar answered Oct 21 '22 07:10

kundan