ADB (Android Debug Bridge) is a tool that comes with the Android SDK that allows you to control and interface with your Android device.

learn more… | top users | synonyms

0
votes
1answer
27 views

Get Application Name/ Label via ADB Shell or Terminal

Hi guys at stackoverflow, I'm developing an application that uses ADB Shell to interface with android devices, and I need some way of printing out the application name or label of an application, ...
0
votes
0answers
12 views

ADB error, “desclength 18 is too small”

I cannot get my adb working for my phone, so I start adb server with all trace messages. Here is what I have done, and I hope someone can give some clues... Run the following command as root: ...
-1
votes
2answers
52 views

How to turn wifi on using ADB or any other way when usb debugging is disabled

When Android is locked after Too many pattern attempts, it will ask you to sign in with your Google Account to unlock, I have my username and password but the mobile data and the wireless are not ...
0
votes
1answer
19 views

Screen capture of mobile using adb in Power shell

i am using power shell programming to take a screen shot of android mobile and show in the gui of PC application that us built using power shell programming... when screen capture button is ...
0
votes
0answers
25 views

android_winusb.inf modifications required for Samsung Rugby (SGH-i547)

I cannot manage to get the ADB driver to install for my Samsung Rugby. All the answers that seem applicable for editing android_winusb.inf seem to assume that I'm going to get one or two lines in my ...
0
votes
0answers
21 views

Hanging on localhost:9222 using the remote debugging feature in Chrome for Android

I've followed the official guide but when I enter in Chrome localhost:9222 it just hangs there "Waiting for localhost..." Nothing else. I've enable USB debugging on my device and connected my device ...
-3
votes
0answers
64 views

enable USB Debugging through command line [closed]

My mobile phone screen got broken today and I need to enable USB debugging mode. So Can some one help to enable USB debugging Mode enable/disable through command line. Thanks in advance Santosh
0
votes
0answers
16 views

Running an android application through terminal

I want to run an android application through adb command in terminal. I am able to launch application by using am start command. adb shell am start -n activity name Now i want to input some ...
0
votes
0answers
11 views

ADB used to connect wirelessly, now I can't connect and get double port error (unable to connect *.*.*.*:5555:5555)

I was using the adb wireless app on my older Droid X. It was working flawlessly for months, no problem at all. I didn't update anything, nothing has changed on anything. The computer wasn't restarted, ...
0
votes
2answers
44 views

Can't find my android smartphone with eclipse/adb

I can't get eclipse / adb to find my htc desire x. I tried about everything, google usb drivers, htc sync, etc. I got usb debugging enabled but since i got android 4.1.1 i can't change the usb ...
0
votes
0answers
13 views

SU Access, ADB Commands (Possibly ), Background Actions

I want to create an app that takes /system/framework/framework-res.apk , decompiles it, takes an image of the user's choice, converts it to a png file of 512x512 and replaces a couple of png in the ...
0
votes
0answers
75 views

Android 2.3.6 - USB Tethering and ADB at the same time

I'm trying to use USB tethering and ADB at the same time with a rooted Android 2.3.6 (yeah, old, I know) but I can't, when I activate USB tethering, adb stops recognizing the device. Is it how Android ...
0
votes
1answer
61 views

adb protocol failure using install and push

I cannot install apk files to my phone using adb install. I cannot push apk files to my phone's sdcard using adb push. In both cases adb gives me "protocol failure", followed by a notice that it is ...
0
votes
1answer
19 views

Error in configuring virtual box to ADB

I have setup virtual box for android emulator. Everything was fine till now, but when I am trying to connect to add to virtual box it is throwing me the message: unable to connect to ...
0
votes
1answer
13 views

How to get ADB logs using eggPlant automation tool

Can anyone tell me how can we get adb logs using eggPlant automation tool.Actually i want to have adb logs for my device when running eggPlant scripts. Please help me out in this situation.
0
votes
2answers
85 views

Non market apk update installer

I am newbie to Android development.I have a existing non-market android project.Now I want to create a update apk with new changes to code,assets etc.Below is my requirement. when i install a new ...
0
votes
1answer
34 views

Android JB 4.2.2 and Monkeyrunner script to make call

I am using Jelly Bean 4.2.2 on my device and trying to make a call using Monkeyrunner script. I am using the below code which was working on ICS very well but in JB, it doesn't type the phone number ...
0
votes
1answer
19 views

Adding a filter to log output in cmd

I'm using adb -s [deviceId] logcat to print the device's log output into cmd. But now I want to add a TAG filter to the shown output. How can I do that?
0
votes
0answers
23 views

How to execute javascript on same browser tab through adb

I'm trying to open a URL and execute a javascript on the same page. I managed to open two consecutive URLs in the same tab using -e but when I try to use javascript, it opens a new tab instead of ...
0
votes
0answers
151 views

Flashed bootloader, now adb/fastboot no longer see the device

I was restoring a nexus s to a factory image as I've done before on other nexus s phones. After flashing the bootloader, I can no longer connect to the phone with ADB. "Enable USB debugging" is ...
0
votes
2answers
40 views

Android not recognizing my device

I have already installed the drivers. I can transfer files from my Tablet to the PC. Debug Mode is on, but adb devices and eclipse are not finding it. It's a chinese tablet (=/) running version 2.2. ...
0
votes
4answers
29 views

Where does adb put installed apps on the device?

Using the guide at http://developer.android.com/training/basics/firstapp/running-app.html, I used adb to download the sample Hello, World app to my android device (a Samsung Admire, SCH-R720) and I ...
2
votes
1answer
52 views

Android system properties - unsetting them on the command line

I can set a system property on an android phone (with appropriate permissions) using setprop and a key value pair: $ adb shell setprop persist.this.is.my.property testing I can then get the ...
0
votes
1answer
47 views

Android device is seen by eclipse but application won't start

I'm new to android programming so I was trying an application the other day and when I hit "Run" in eclipse, a prompt shows up and I choose my device from there and it starts launching it. The ...
1
vote
2answers
179 views

Eclipse ADB error [Ubuntu 13.04]

So I'm running Ubuntu 13.04 and for the past many hours I've been trying to get eclipse (Eclipse Juno 4.2.2) to launch anything on my phone, or even just in the emulator, but to no success. Whenever I ...
0
votes
0answers
19 views

How do I use adb grant or adb revoke?

The Android documentation contains the following description of the adb grant and adb revoke commands. grant <PACKAGE_PERMISSION> Grant permissions to applications. Only optional ...
0
votes
0answers
36 views

Can Android list process importances in adb

I have an application that does some user-visible things even when it is not on display. It uses foreground service when it does such things and it's activity is not visible. Now I would like to ...
0
votes
0answers
59 views

device is not apperaing in adb list even after installing the driver (Nexus s)

I am trying to do some android application using eclipse ,So i thought of using my Nexus s device .I downloaded the google driver from android SDK Manager and installed. But still my device is not ...
-1
votes
0answers
47 views

Android: Add chrome bookmark via ADB [closed]

For automation purposes I'm looking for a possibility to create a bookmark of a website I called in chrome via adb. Bonus points: The bookmark should reside on the home screen Extra bonus points: The ...
0
votes
0answers
59 views

Eclipse ADB is rejecting shell commands, and cannot find target of device

This has been addressed a few times, but I need to re-open the issue, as none of the answers either work or explain what is wrong. My phone is a rooted LGl45c, API 10, android 2.3.4. Upon plug-in to ...
1
vote
0answers
20 views

android ioio open accessory doesn't work, while adb works

I'm able to get my application working when I have USB debugging on. But when I turn of debugging so I can use open accessory, the application doesn't work. What happends is that when I connect the ...
-1
votes
1answer
29 views

How can I continuously stream the content of a SQLite table via command line (adb sqlite3) instead of manually pulling it?

I have a batch script which shows me the content of an SQLite db table on a real device: @ECHO OFF SET packageId=com.brightideahub.motorassistant SET databaseName=test_event_data.db SET ...
0
votes
0answers
37 views

ADB Cannot show my device after the first command

I am running Android Platform tools for MAC OSX. when I connect the android device and execute ./adb device it list my device. If I tried to run something later like ./adb shell ???? it runs the ...
0
votes
0answers
70 views

Must do adb kill-server and start-server everytime to recognize android device in Ubuntu

I'm developing android apps in eclipse and I upgraded recently from Ubuntu 12.10 (Quantal Quetzal) to Ubuntu 13.04 (Raring Ringtail). In the previous Ubuntu version I had zero problems in recognizing ...
0
votes
0answers
20 views

Compose a MMS with image attached via abd shell android

Hi all I am developing some test case automations, I try compose a MMS via abd Shell but until now I can“t have success. I try via code: adb shell am start -a android.intent.action.SENDTO -d ...
0
votes
1answer
84 views

Android Device Chooser not showing my device but adb and Eclipse do

I am trying to run my android app in an attached device (Sony Ericson Xperia X10). The device is recognized by adb [fonoro@localhost platform-tools]$ ./adb devices List of devices attached ...
0
votes
0answers
42 views

How do I pass an absolute path to the adb command via git bash for windows?

I'm trying to pass a unix style path to the Android adb command using a git bash (msysgit) but the shell is interpreting my path incorrectly. This is what I've tried so far: $ adb push myfile ...
0
votes
1answer
29 views

ArtView 10.1" IPS RK66WA ADB device not found

I have a ArtView 10.1" IPS for dev some apps I have installed google driver and all seemm to be ok in device manager i have an ADB interface with no warning But when i try an "adb.exe devices" the ...
0
votes
0answers
122 views

adb devices doesn't show my device

I'm trying to run my application from eclipse on my Samsung Galaxy Tab, however it doesn't show up in the 'Choose a running android device' I then tried changing the running configuration to 'Launch ...
0
votes
1answer
47 views

Writing a Code in vb to stream screenshots from mobile through ADB

am trying to write a code in VB to stream screenshots from my android device to my PC, I tried to use the following adb commands inside a timer adb shell screencap /sdcard/screen.png adb pull ...
0
votes
1answer
234 views

After unlock an Android device, how to access it via `adb shell` with `root` permission

I unlocked my Nexus 7 device, and it shows lock state : unlocked However, when I used adb shell to connect it, I still couldn't ls /data, and got the error opendir failed, Permission denied. Any ...
0
votes
1answer
54 views

How to open an image from adb in Gallery without touch panel?

I have an image /tmp/cute.jpg which I want to show on my android I tried: adb shell am start -t image/* file://tmp/cute.jpg But it asks me to choose application (gallery or browser) to open with ...
0
votes
0answers
106 views

Install .apk file to Android Emulator on a Mac

I'm new to Android and I was given some .apk files (not created by me) with malware that I'm trying to run on the Android emulator for testing purposes (trying to get app's system call data using ...
0
votes
2answers
180 views

Cannot install ADB for Kindle Fire HD

I'm trying to root it although after i install the correct ADB drivers, when i plug in my Kindle fire HD 7", Kindle Fire -> Android Composite ADB Interface. does not show up in device manager, ...
1
vote
1answer
41 views

What's wrong with my `adb logcat …` command?

I just want to see logcat output for MyTag that my app outputs. I thought this would be the command to run ... $ adb logcat MyTag:* ... but nothing gets filtered and the output is the same as if I ...
0
votes
0answers
23 views

Android - have service notified when app is opened

I'm trying to make a widget for Android 2.3+ that will show when the last time the user had Facebook open was. I know that one way to get this information is to use the android.permission.GET_TASKS ...
1
vote
1answer
86 views

HTC Desire X USB ADB doesnt find it

last week I was using adb to connect my phone with my laptop and it works correctly, then there was some phone updates and after it Android ADB cant find my phone I google it like 8hours and didnt ...
-1
votes
0answers
25 views

Micro-USB and root errors [closed]

The micro-USB port of my Xperia Arc with ICS it's broken. How can I enter to ADB by wireless, without connecting the cable? I am not root, and I need to enter to ADB to root my phone. I can connect to ...
0
votes
1answer
122 views

UDP port forwarding for android emulator; “adb forward udp:port udp:port” and telnet localhost adb_port not working

Hi I am developing an app using android emulator. I need to register a UDP socket at some port X that can be accessible from local network. Since Android emulator is NAT'd so I need port forwarding. I ...
0
votes
2answers
113 views

How to install .apk on multiple phones for testing

Hi I am developing a cloud application for android. While developing its a torture to install apk on every phone after a single line change in code. Is there a way to install it through script. or ...

1 2 3 4 5 25