How to identify Nokia X

I am trying to deploy an Android application on a new Nokia X Android phone, but it does not appear in the list of devices.

On the website they say:

* USB drivers are available through the SDK Manager under additional features in the Nokia X USB driver package . During installation, drivers can be found in the \ extras \ nokia \ usb_driver folder. *

http://developer.nokia.com/resources/library/nokia-x/getting-started/device-setup.html

I do not find it in the SDK manager. I also tried using google usb driver.

Thanks in advance!

+8
android nokiax
source share
3 answers

UPDATE:

From your site:

The steps for installing Nokia X packages with SDK Manager are as follows:

Open the SDK manager and select "Tools" β†’ "Manage additional sites" ... Open the "Specific Users" tab and click the "Create ..." button. Enter the following URL in the Add Site URL dialog box: http://tools.nokia.com/nokia-x/repository/addon.xml Copy Code Click OK. Click the Close button to close the Additional Sites window.

Then you will need to see their add-on package, install it in the SDK manager and see the Nokia USB driver in / extras /

WINDOWS

Edit the file C: \ Users \ .android \ adb_usb.ini and add the line:

  0x0421 

then restart the adb server.

Enabling USB Debugging

In order for the ADB tool to recognize your device, you need to enable USB debugging on the device by following these simple steps:

Run the device settings. Click "Developer Options" in the "System" section. Turn on developer options and tap OK in the query dialog box. Enable USB debugging in the Debug section and click OK in the query dialog box. USB debugging is now enabled on your device.

+14
source share

On Mac OS X, the procedure is as follows: see the device setup guide for Linux and Windows :

1) Download and install Nokia X SDK

2) Update adb_usb.ini with Nokia X USB Vendor line in terminal:

sudo nano ~/.android/adb_usb.ini 0x0421 

3) Update and restart adb server in terminal

 sudo android update adb adb kill-server adb start-server 

4) On your Nokia X phone, go to Settings> Developer Options> Allow USB Debugging

5) Check your Nokia X device in the terminal

 adb devices 
+7
source share

Download the ADB driver installer from adbdriver.com and unzip the package. Make sure you enable the developer options and USB debugging on your mobile device and connect to the computer. Then run ADBDriverInstaller.exe from the extracted folder. Select your device and click Install. It worked great for me. Then my device was recognized in Android Studio.

0
source share

All Articles