Hardware Detection - Android Software/Hacking General [Developers Only]

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

Related

ADB app

I just would like to know whats the best android application alternative for an ADB shell? something like an ADB shell on the go. something that can do everything an ADB shell can without issues.
Try terminal emulator

ADB

Hello, I have a problem. I'm trying to do some things from my pc in the phone with the ADB Shell and not let me.
My problem is that I put adb: not found.
I do this:
i1141.photobucket.com/albums/n582/RyuuDrakonShis/7.png
Worth up here all right but when I have root permissions and everything working I put the commands and none let me get adb remount such or adb pull and nothing makes me adb: not found.
Thank you.
I'm not sure if that's a screenshot from your own computer or not.
On my computer adb resides in C:\adb. So when using it I type:
cd C:\adb
Then, to make sure it sees my device, I type.
adb devices
If it returns a device, great. Otherwise check your usb cable and driver.
I have a feeling you need to tell cmd prompt where to look for adb by using the cd (change directory) command.
For instance, if your adb install is located in C:\Users\User1\adb, you would type cd C:\Users\User1\adb, and hit enter.
adb stands or Android Debug Bridge. It's a command line tool that comes with the Android SDK (Software Development Kit). If you develop for Android, you should know where it is.
Anyway, in my case it's in C:\Program Files (x86)\Android SDK\platform-tools\adb.exe
Google Android SDK to get it.
If you have adb, and you're typing: adb shell, then you go to the Android shell. You don't need to type "adb" inside the shell again!
What I mean is:
Code:
adb shell ls
it's the same than:
Code:
adb shell
ls

bypass android security new method!!!

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

How to know your android soundcard / DAC

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.

Android dumpsys

Hello, I would like to be able to check when an Android phone is registered to VoLTE and VoWIFI via dumpsys telephony.registry or any other attribute from dumpsys. Does anybody have that experience? Thank you in advance.
You can get that out of the Android API: https://developer.android.com/reference/android/telephony/CarrierConfigManager
I know the documentation, however, when I connect to the phone and write the command
adb - s phone shell dumpsys | grep -i CarrierConfigManager
it does not find anything;
I might do something wrong ...

Categories

Resources