0
votes
1answer
47 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 ...
1
vote
1answer
156 views

Batch file help 2 commands for adb at once

Im tryin to set 2 commands for a folder of apks im trying to push to /system/app/ so what im trying to do is push all apks in a folder to /system/app/ then set a chmod 644 command for those files ...
1
vote
1answer
316 views

adb command to open settings and change them

Hi im looking for adb command to open settings and change them for example this command open display settings adb shell am start -n com.android.settings/.DisplaySettings I want to go further in ...
-1
votes
1answer
235 views

PHP and Android - How to handle adb command to send data to Android Phone [closed]

I'm currently developing a web interface to "control" an android device through the adb connection over USB. I have wrote a web page in php and all the system commands I use work fine but the ones ...
0
votes
2answers
692 views

How to send a adb event for long press a key

I am trying to do some auto testing and I need to trigger a long press of a key using adb command from my PC. For example, a long press home button would bring up the lates used apps. I found that ...
0
votes
1answer
478 views

Reset accelerometer in Android from ADB interface

How can i reset the accelerometer sensisng device by an adb command? I want to achieve the reset action that tools like Advanced tools do with accelerometer, but i need it in adb command coz i want to ...
0
votes
2answers
256 views

ADB Script via Javascript or Batch file

I am looking to create a batch / JS file that executes the below mentioned ABD commands for Android OS. Any help is greatly appreciated. CD C:\Documents and Settings\tech\desktop\pattern\ adb shell ...
1
vote
1answer
470 views

Making Apk files run with emulator automatically

I would like to have my Windows Vista Home Premium run my .APK files in the emulator when I click on it. There are ways to do it manually from ADB command line, but I want to make it run on the ...
0
votes
0answers
2k views

ADB shell script to send AT commands to a modem-cannot return control to a shell and capture output

I already posted similar question, but still could not get my job done, so this a a second attempt, where I would like to more clearly state my stumbling block. So basically I am in Android phone's ...
3
votes
1answer
2k views

Sending AT commands from Powershell script to Android phone via adb

I have a little script that I run in adb shell of Android phone (/system/etc directory), which enables to communicate with the modem by sending/receiving a single AT command. The script itself, if run ...
1
vote
1answer
2k views

Can i remount in the adb shell in android?

I am using this command $ adb shell $ su -shows permission denied.. $ mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system But it shows some permission problems ie. Usage: mount [-r] [-w] ...
0
votes
4answers
4k views

Is it possible to “force stop” an application I am debugging using adb in terminal?

I am developing an app, and for debugging certain actions on first installation I found that using the terminal command: ./adb uninstall <package-name> was a lot fast than navigating to ...
0
votes
3answers
949 views

How can I get return value when using awk in perl script?

I am trying submit to $process the result of this system call my $process= system "adb shell ps | egrep adb | awk '{print $1}' "; but when print " $process \n"; I have got zero Any suggestions
1
vote
2answers
3k views

execute adb shell command at runtime from the android application

In my application I want to create a directory xyz in sdcard at the runtime from the my Application. But it doesn't work. Here is my code.. public class process extends Activity { /** Called when ...