September 2015
Beginner to intermediate
356 pages
7h 27m
English
Let's see some things that will help in app development such as ADB, configuring the Java environment variable, and API levels.
Android Debug Bridge (ADB) is an inbuilt command-line tool, which helps us communicate with our virtual device or physical device.
The ADB tool can be found within our SDK directory. It is available at sdk | platform-tools.
Ubuntu users can easily install ADB by using the following command and directly accessing ADB from the command line:
sudo apt-get install android-tools-adb
To access ADB from any directory, if you are using older versions, you need to export the path of the adb directory. It can be done by using the following command:
export PATH=${PATH}:/home/rajamalw/sdk/platform-tools/ ...Read now
Unlock full access