Set Up Device For Development
Set Up Device For Development
Set Up Device For Development
com/en-
us/xamarin/android/get-
started/installation/set-up-device-for-
development
Set Up Device for Development
how to setup an Android device and connect it to a computer so that the device may be
used to run and debug Xamarin.Android applications.
By now, you've probably seen your great new application running on the Android
emulator, and want to see it running on your shiny Android device. Here are the
steps involved with connecting a device to a computer for debugging:
Each of these steps will be covered in more detail in the sections below.
Enable Debugging on the Device
It is possible to use any Android device to test an Android application. However the
device must be properly configured before debugging can occur. The steps involved
are slightly different, depending on the version of Android running on the device.
Android 4.0 to Android 4.1
For Android 4.0.x to Android 4.1.x, debugging is enabled by following these steps:
This screenshot shows the Developer options screen on a device running Android
4.0.3:
Android 4.2 and higher
Starting in Android 4.2 and higher, the Developer options is hidden by default. To
make it available, go to Settings > About phone, and tap the Build number item
seven times to reveal the Developer Options tab:
Once the Developer Options tab is available under Settings > System, open it to
reveal developer settings:
This is the place to enable developer options such as USB debugging and stay awake
mode.
Install USB Drivers
This step is not necessary for OS X. Just connect the device to the the Mac with a USB
cable.
It may be necessary to install some extra drivers before a Windows computer will
recognize an Android device connected by USB.
Note
These are the steps to set up a Google Nexus device and are provided as a reference.
Steps for your specific device may vary, but will follow a similar pattern. Search the
internet for your device if you have trouble.
Run the android.bat application in the [Android SDK install path]\tools directory.
By default, the Xamarin.Android installer will put the Android SDK in following
location on a Windows computer:
Copy
C:\Users\[username]\AppData\Local\Android\android-sdk
Google Nexus devices (with the exception of the Galaxy Nexus) require the Google
USB Driver. The driver for the Galaxy Nexus is distributed by Samsung. All other
Android devices should use the USB driver from their respective manufacturer.
Install the Google USB Driver package by starting the Android SDK Manager, and
expanding the Extras folder, as can be seen in the follow screenshot:
Check the Google USB Driver box, and click the Install button. The driver files are
downloaded to the following location:
Copy
After the USB drivers are downloaded, it is necessary to install them. To install the
drivers on Windows 7:
1. Access the Windows 8 Advanced Boot Options - This step involves rebooting
the computer to access the Advanced Boot Options. Start up a command line
prompt and reboot the computer by using the following command:
Copy
shutdown.exe /r /o
USB cable - This is the easiest and most common way. Just plug the USB cable
into the device and then into the computer.
WiFi - It is possible to connect an Android device to a computer without using
a USB cable, over WiFi. This technique requires a bit more effort but could be
useful when there is no USB cable or the device is to far away for a USB cable.
Connecting via WiFi will be covered in the next section.
Connecting over WiFi
1. Determine the IP address of your Android device. One way to find out the IP
address is to look under Settings > Wi-Fi , and then tap on the WiFi network
that the device is connected to. This will bring up a settings screen showing
information about the network connection, similar to what is seen in the
screenshot below:
On some versions of Android the IP address won't be listed there but can be
found instead under Settings > About phone > Status.
Copy
After this command is issued, your computer will not be able to listen to
devices that are connected via USB.
4. Disconnect the USB cable connecting your device to your computer.
5. Configure ADB so that it will connect to your Android device on the port that
was specified in step 1 above:
Copy
Once this command finished the Android device is connected to the computer
via WiFi.
When you're done debugging via WiFi, it is possible reset ADB back to USB mode
with the following command:
Copy
adb usb
It is possible to ask ADB to list the devices that are connected to the computer.
Regardless of how the devices are connected, you can issue the following command
at the command prompt to see what is connected:
Copy
adb devices
Summary
This article discussed how to configure an Android device for development by
enabling debugging on the device. It also covered how to connect the device to a
computer using either USB or WiFi.