Tag archives for ADB

Android

Use Wi-Fi rather USB to connect to your Android device via ADB

ADB connection via USB port is the most known method used by developers to connect to their Android devices.   However, there are some problems by connecting via USB Port : 1/ Impossible to move around with device for testing purpose 2/ It damages cable and with time, you should change the cable 3/ USB Socket of Android device can also…
Continue Reading
Android

Monitor and analyze Battery Usage Data on Android

Android SDK comes with a large number of amazing tools. However, a lot of developers don’t know some of these. Thus, who knows that Android SDK offers a tool to monitor and analyze battery usage data ? This great tool is low level and can be called from an adb shell command. The dumpsys batterystats command generates some intereseting statistical…
Continue Reading
Android

ADB Survival Guide for Android

Android Debug Brigde (ADB) is a command line tool, coming with Android SDK provided by Google, that lets developers to communicate with an emulator or a connected Android device directly from the command line. To find adb tool, you must go on <android_sdk_path>/platform-tools directory on your computer. In this article, you’re going to learn the handy adb commands which are…
Continue Reading