0

In Android (non-rooted), is there any API or way to detect at runtime an Android CPU, and specially TEGRA devices?

Thanks

PerracoLabs
  • 16,449
  • 15
  • 74
  • 127

1 Answers1

0

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.

Community
  • 1
  • 1
TheCodeArtist
  • 21,479
  • 4
  • 69
  • 130