Quote:
Originally Posted by stanglifemike
OK, but what I type will be different in ADB then it would be if I were using SDK...right? Could you give me the commands to type in the "Window button+R" commands?
|
Well first lets make sure we are on the same page...I assume since you asked about adb you are trying to figure out which touch sensor you have? If you want to know what screen you have all you need to do is go to Menu/About Phone/Hardware Information. Your screen type 002 or 003 will be at the top.
adb is a tool within SDK so the actual commands will be the same just the path leading up to it would be slightly different.
We both would type:
cmd
in the Run window, then
cd\
to get to a C prompt.
To find out what touch sensor I have, with my device plugged in and USB debugging enabled at the C: prompt I would type:
android\tools\adb shell cat /sys/android_touch/vendor
And you would type:
evo-recovery\adb-windows shell cat /sys/android_touch/vendor
You see the command "shell...." is the same, just how we got there is different.
Hope that helps.