Skip to content
Advertisement

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 adb version, I get

Unable to create Debug Bridge: Unable to start adb server: Unable to detect adb version, adb output: /sdk/platform-tools/adb:

How to fix out -Unable to create Debug Bridge: Unable to start adb server: Unable to detect adb version, adb output: /home/dilip/Downloads/sdk/platform-tools/adb: 1: /home/dilip/Downloads/sdk/platform-tools/adb: Syntax error: “)” unexpected I also go to platform tool path and hit adb kill-server and adb start-server command on the terminal still not able to connect device. I also go through this link Unable to

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): Answer

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 builds. Is there

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 entry into your script for

Advertisement