When building an Android app, it's important that you always test your app on a real device before releasing it to users. This page describes how to set up your development environment and Android device for testing and debugging.
Set up a device for development
Before you can start debugging on your device, there are a few things you must do:
- On the device, open the Settings app, select Developer options, and then enable USB debugging.
- Set up your system to detect your device.
- Windows: Install a USB driver for Android Debug Bridge (adb). For an installation guide and links to OEM drivers, see the Install OEM USB Drivers document.
- Mac OS X: It just works. Skip this step.
- Ubuntu Linux: Use
apt-get installto install theandroid-tools-adbpackage. This gives you a community-maintained default set ofudevrules for all Android devices.Make sure that you are in the plugdev group. If you see the following error message, adb did not find you in the plugdev group:
error: insufficient permissions for device: udev requires plugdev group membership
Use
idto see what groups you are in. Usesudo usermod -aG plugdev $LOGNAMEto add yourself to the plugdev group.The following example shows how to install the Android adb tools package.
apt-get install android-tools-adb
Connect to your device
When you are set up and plugged in over USB, you can click Run
in Android Studio
to build and run your app on the device.
You can also use adb to issue commands, as follows:
- Verify that your device is connected by running the
adb devicescommand from yourandroid_sdk/platform-tools/directory. If connected, you'll see the device listed. - Issue any adb command
with the
-dflag to target your device.
RSA security key
When you connect a device running Android 4.2.2 (API level 17) or higher to your computer, the system shows a dialog asking whether to accept an RSA key that allows debugging through this computer. This security mechanism protects user devices because it ensures that USB debugging and other adb commands cannot be executed unless you're able to unlock the device and acknowledge the dialog.