adb install

If we want to install an apk already downloaded or we compiled, use below command to install … Read more

adb uninstall

If We want to uninstall the apk, using adb, we need to know the package name of … Read more

List all permissions used by data and system applications in android

Above command displays all the permissions. This command also takes following optional arguments as, Following is the … Read more

Find all supported features of android device using adb

Following command Prints all features supported by the android system / device. Following is the output of … Read more

Make phone call using adb command

If you have multiple devices connected with laptop/desktop, use “-s serial_no” to distinguish which device your want … Read more

adb shell cmd package list libraries – Get all installed libraries

First connect to adb, Now using below command, we can identify all the installed libraries on an … Read more

adb shell getprop

As we have seen in our another post “commands to Identify Product Model, Serial Number ( Device … Read more

How to Install and Uninstall android application as system app / priv-app

To install any android application as a system app, ( which can’t be uninstalled from settings ), … Read more