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
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
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