Search This Blog

Sunday, September 27, 2015

Saturday, September 19, 2015

Saturday, September 12, 2015

Eclipse content loader on zero - hung

i tried them all solution exist in the web.
finally - combine them all :


  1. i delete the folder \.metadata\.plugins\org.eclipse.core.resources\.projects
  2. i delete the file ddms.cfg from %USERPROFILE%/.android
  3. start eclipse with -clean -refresh parameter 
  4. make sure no adb.exe is running
  5. open eclipse
somehow its worked 

Yaniv

Wednesday, September 9, 2015

adb command to know


list command
awesome-adb

dial a number
adb shell service call phone 2 s16 "+999996719"
adb shell am start -a android.intent.action.CALL -d tel:999999


answer call
adb shell input keyevent 5


uninstall app  (-k to keep preferences)
adb shell pm uninstall -k yaniv.mypack.com

list of running activities
adb shell dumpsys activity activities

top activity name
adb shell "dumpsys activity | grep top-activity"

site with commands AndroidShell

show process running
adb shell ps

install/uninstall package
adb install  xxxx.apk
adb uninstall xxxx.apk

show app permission and info
adb shell dumpsys package [package name]

how to root android

http://www.addictivetips.com/mobile/how-to-root-your-android-phone-device/

How can incoming calls be answered programmatically in Android 5.0 (Lollipop)? - Stack Overflow

How can incoming calls be answered programmatically in Android 5.0 (Lollipop)? - Stack Overflow: