Skip to content

Tag: adb

How to update adb to v.39 or newer on Ubuntu?

I’m not very familiar with Ubuntu. Right now, I’m on adb version 1.0.32, I need adb version 39 or newer. Whatever I do I seem to be stuck at v.32 . I’ve tried uninstalling adb with and re-installing with adb version is still showing 32. Help! Update: I also tried But after that, when I run a…

Shell script works in bash but not on ‘adb shell’

Below shell script works perfectly fine in bash shell. But produces an error in android shell. May be it has got to do something with the shell that android is using. But how can I resolve it? If not a perfect solution, an hack would also do for me. Shell-script : O/p In android shell, O/p on bash shell(Linux…

Is it possible to get the version of a shared object?

I’m trying to track down a bug in my software line. I have two release build version 2.0.962 and 2.0.966. The only difference between these versions is a lib.so file. In order to figure out where to start looking in the source tree for lib.so, I need to know its version number in each of the release bui…

Connecting to WiFi using adb shell

I have all the details to connect to a particular access point. I have to use that access point only, so all I require is the command to do it. Answer You can add a network entry into the wpa_supplicant.conf yourself (or within your script) Essentially connect manually once, then do: and integrate the network…