In Android (non-rooted), is there any API or way to detect at runtime an Android CPU, and specially TEGRA devices?
Thanks
In Android (non-rooted), is there any API or way to detect at runtime an Android CPU, and specially TEGRA devices?
Thanks
On any Android device, CPU information can can be gleaned by reading /proc/cpuinfo
programmatically as shown here and here.
Parse the value of the hardware
tag listed in /proc/cpuinfo
to determine the device. The value is usually the codename of the Android device. With a given "codename" value of the hardware
tag, lists like this will help you determine the Android device.