Android offers multiple ways to transfer apps and data between phones. The usual way of transferring apps from your old device to a new one is by using the Tap & Go feature.
In addition to Tap & Go, Android also allows you to copy apps and data using ADB. If you just want to copy one specific AP...
Android Device Owner - Minimal App
Android 5.0 introduced a managed device mode. This feature allows a device owner to perform some privileged tasks often related to device administration, such as lock/hide apps, configure user accounts, wipe/reboot device, or remote updates without user interaction. All this can be done without...
Taking Screenshots Remotely on Android with ADB
Sometimes it is useful to grab a screenshot from your new app remotely through Wi-Fi. For example, you might be using sensors like the accelerometer and you would like to show the results while your moving. In this situation it might be more comfortable to move with the device without the attached U...
Killing Current Foreground App With ADB
Recently I've been working on an Android project that used the lock task mode. This mode can be used to set up a single-purpose Android device with your own kiosk app where the user is not allowed to exit your application. Home and back buttons have basically no effect.
When I was testing this ki...
Changing Android ID Without Root
Android ID is a 64-bit number that some Android apps use for device identification purposes. It is expressed as a hexadecimal string and on my emulator it looks like this
45cd78366d92d01f
Changing Android ID From Your Computer via ADB
Android ID can be changed with the help of ADB through th...