Showing posts with label Android. Show all posts
Showing posts with label Android. Show all posts
Sunday, October 28, 2018
Install android apk using adb with all permissions granted by default
Reset all granted permissions to a android package
Get environment variables passed to android/linux process
Set/Get global android device settings using command line
Friday, August 12, 2016
How to get print from android makefile
Add below line to get print from android makefile
$(info "I want this print")
Tuesday, August 2, 2016
To grant all permission to android app
To grant all permissions to app, use -g as argument while installing with adb
adb install -g myapp.apk
Friday, February 15, 2013
Use command line to get screen tap in Android
If you want to tap on android device screen and touch is not working then you can use following command to tap screen. Suppose you want to tap 300, 500 location on screen then use following command
adb shell input tap 300 500
Dial/Accept phone call using command line in Android
Wednesday, October 17, 2012
How to extract files from android system.img
1) simg2img system.img system_ext4.img
2) mkdir temp
3) sudo mount -o rw,loop system_ext4.img temp
Now you can browse or copy files from temp folder.
Subscribe to:
Posts (Atom)