Tagged Questions
0
votes
1answer
733 views
how to get imsi number in android using command line
I want to get IMSI number of SIM of Android phone using command line.
Is there any adb command or any shell command in android for this???
I tried "adb shell getprop ril.IMSI" command in Samsung ...
0
votes
2answers
510 views
login into an app from adb shell using am start commands
If I'm testing an app, using am start commands in an android/adb shell.
And the app requires a user to log in before proceeding to the main content.
How can I log in the app from the android command ...
1
vote
1answer
206 views
log into Facebook app using am start commands/ADB shell
I would like to log into the Facebook app from an android shell using am start commands.
am start -n com.facebook.katana/.LoginActivity
That command brings up the facebook login screen. But ...
0
votes
1answer
272 views
Can I specify an intent sent via ADB?
I'm developing an app that is designed to be launched (only) from another app which provides extras in the Intent. So this app does not use the LAUNCHER category in its intent filter, and does not ...
0
votes
1answer
121 views
Send Explict/Implict Intent to Internal View/Activity
I'm experimenting here...
Ok, so I have a relativelayout with 3 views.
2 webviews: one on the bottom full width taking up 20% verically. One on the right side taking up 30% of the screen. And a ...
0
votes
3answers
450 views
How do I send an email on Android by executing a process
I am working on adding calls to the Android shell from within the app. I have been able to call shell scripts or basic shell commands very well, but now I am trying to send an email (mostly to know if ...
2
votes
1answer
2k views
adb command for getting ip address assigned by operator
I need to fetch the IPaddress assigned by the operator after a successful 3G or LTE data call.
$adb shell netcfg >> doesnt have the assigned IP address.
I tried "adb shell dumpsys" and grep ip ...
0
votes
0answers
15 views
adb command help for querying call state [duplicate]
Possible Duplicate:
Phone_State in ADB
I'm a newbie to adb (Android) domain.
I'm trying to programatically (using adb commands) start a call, get the call state and terminate a call. I got ...
1
vote
1answer
1k views
Android : How to enable or disable ADB?
I am very well aware with the fact that enabling and disabling ADB comes under Android security. Normal application wont be able to achieve that. But my case is different.
I am having full access to ...
1
vote
1answer
159 views
Default app for home isn't cleared when installing a new launcher app via ADB
When I download a new launcher and install it, the next time I hit home, I'm presented with a dialog to choose which application to launch from the home button.
I'm working on my own launcher app, ...
0
votes
1answer
678 views
How can I dismiss the android keyguard using adb intent
I am looking for a way to use ADB to dismiss the keyguard in order to automate some tasks.
I would like to start an ACTIVITY (perhaps to call the public method disableKeyguard in ...
1
vote
1answer
445 views
How can I send messages back and forth between ADB shell and an Android app?
I've been looking for an answer or the past 3 days, and haven't yet found one that works. I'm trying to write an Android app that can be controlled from ADB with custom commands. Is there anyway I can ...
2
votes
2answers
1k views
How to pick up a call by adb
Can I pick up a call by any adb command? I know that you can dial a number by "adb shell service call phone 2 s16 "+15084157509".
Can phone service do pick-up call or can I send some adb command to ...
2
votes
4answers
1k views
How can I crash/kill a running app
I would like to crash my Android app by using command-line ADB tool during my app is running, is it possible to do? and how ?
(Basically, I want to test if my app persist the necessary informations ...