2

I am facing few library errors on new Android ARM 64 devices, is there a way to identify ARM 64 devices so that I can bypass my code for those particular devices?

Thanks

Punit Sharma
  • 2,951
  • 1
  • 20
  • 35
user45678
  • 1,504
  • 6
  • 29
  • 58
  • 3
    Possible duplicate of [API call to get processor architecture](http://stackoverflow.com/questions/11989629/api-call-to-get-processor-architecture) – kandroidj Jan 05 '16 at 07:06

1 Answers1

5

You can easily get this through Build api of android. Build.CPU_ABI gives armeabi-v7 in my device

you can look at following docs for help

ABI management

Build API

DeltaCap019
  • 6,532
  • 3
  • 48
  • 70