Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to retrieve SoC model name of an android device?

How to retrieve SoC model name of an android device? E.g. Qualcomm MSM 8974 HAMMERHEAD (Flattened Device Tree) for Nexus 5. (E.g. CPU-Z app shows this info.)

like image 260
Tamas Avatar asked Sep 17 '25 12:09

Tamas


1 Answers

There is no Android specific API that provides this info. The android CPU-Z app includes a piece of native code that finds this information.

If you want to do the same, you will need to provide your own such native code routine, though I suspect that you can probably find a routine to port in a number of open source repositories.

like image 164
zmarties Avatar answered Sep 19 '25 03:09

zmarties