2

To detect the Android OS, we could search the navigator.userAgent string for the 'Android' key word.

However, my question is how to detect whether it's an Android Arm device or an Android X86 device?

Fiona
  • 904
  • 1
  • 8
  • 17

1 Answers1

0

Try this one:

System.getProperty("os.arch");

Original post: API call to get processor architecture

Community
  • 1
  • 1
pawelo
  • 1,405
  • 4
  • 15
  • 30