Hello there,some of android phone soundcard is unknown from the spec,so if you want to know what soundcard that your phone uses,you can get it via ADB shell by command
Adb shell
su
cat /proc/asound/cards
or
adb shell
su
cat /proc/asound/card0
in attachment is screenshot from the command on my fascinate that using wolfson WM8994
i hope this info will useful
zenaufa said:
Hello there,some of android phone soundcard is unknown from the spec,so if you want to know what soundcard that your phone uses,you can get it via ADB shell by command
Adb shell
su
cat /proc/asound/cards
or
adb shell
su
cat /proc/asound/card0
in attachment is screenshot from the command on my fascinate that using wolfson WM8994
i hope this info will useful
Click to expand...
Click to collapse
HEY Bro can u help me as my phone does not support ALSA so no asound config file is there, comapany is claming that phone has wolfson dedicated audio codec but i dont know which model is present
the commands dosn't work
For android, you can also use this app:
"Device Info HW" by Andrey Efremov on the Play Store.
There's a field for audio and sound that lets you know the DAC in used on the phone.
Related
Hello
Is there a way to get hardware information about chips maybe shell commands or in apps. Or is there a way to get information which drivers/firmware are loaded?
Greetings
System.getProperty
Here you can see whats being set by OS:
http://android.git.kernel.org/?p=platform/dalvik.git;a=blob;f=vm/Properties.c;hb=HEAD
-didi
Some hardware/software info is available through 'getprop' adb shell command. Look at the output of this:
adb -d shell getprop
Small request from dan....
Would you be able to do me a big favor? I just need the output of the following ADB command:
adb shell ls -l /dev
Also, the build string would be useful, so maybe just the full output of the following?
adb shell getprop
Thanks, Dan
...and these outputs need to be from your device already running the rogers update
Sent from my LG Thrill 4G...
Sent from my LG Thrill 4G...
Here it is from V21B. It's equally unrootable, and I doubt they've changed it much in the c version:
ls -l /dev:
http://pastebin.com/A94yCW8C
adb shell getprop
http://pastebin.com/fFTWbFct
What do I need to do ?
batvan said:
What do I need to do ?
Click to expand...
Click to collapse
Open up terminal or cmd, go to the platform-tools folder of your android tools installation (install it if you don't have it installed). Type the commands listed in OP, paste the output in pastebin and post the links here.
will post tonight
here you go
http://pastebin.com/vmicxSMA
http://pastebin.com/MupPH2FJ
I know the last 2 ways of bypassing android security doesn't work anymore for some devices here i found the solution (adb shell rm /data/system/gesture.key does not work and lets not talk about te other method the simple solution is this command. OPEN cmd connect your device usb deb should be on. Type adb devices then adb shell+enter then su+enter then rm /data/system/gesture.key and that's it no morelocked devices . EAsy solution gime the credits efren calvario if your are gonna repost my commands
Could you please use this adb command and post the output?
adb shell dumpsys sensorservice
Wanna see how dev friendly the device is!
Regards
k4r70ng said:
Could you please use this adb command and post the output?
adb shell dumpsys sensorservice
Wanna see how dev friendly the device is!
Regards
Click to expand...
Click to collapse
Please find attached the output, its too many lines to paste in body.
Hi, I'm having trouble choosing the right section, anyway..
After more than a year i managed to correctly install ADB drivers, because before i installed Google driver, when i noticed i must install Motorola driver , the removing of previous one did not successful done, so the Motorola one did not installed well, by manually removing files it succeed.
But now another annoying not previewed issue, i need to exchange a file in /system/etc both in my tablet and my Motorola moto C tel. , it needs to remount system part. in r/w but to do this need to restart adb as root but with 'adb root' this is the answer:
adbd cannot run as root in production builds
my system is 7.0, what can i do?
You can install a temporary root to run shell-commmands what require root-rights like mount in ADB:
Code:
adb devices
adb push <FULL-PATH-TO-SU-BINARY-ON-PC> /data/local/tmp/
adb shell "chmod +x /data/local/tmp/su"
adb shell "/data/local/tmp/su -c 'mount -o rw,remount,rw /system'"
I have two questions, i don't find any su command available in the net.
I don't understand how it is possible to have to do all these hard maneuvers with a debug tool, i think it might be simpler.. why there's a command remount or root if it doesn't work?