Search code examples
androidarmandroid-hardware

Android - How to identify if device is ARM 64


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


Solution

  • 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