Get android bit version (32 bit or 64 bit) at runtime

557 Views Asked by At

How can I check the programmatically version of the android bit (32 bit or 64 bit)

1

There are 1 best solutions below

0
On

java.lang.System class provides getProperties as static method which determines the current system properties. By getting key of os.arch from Properties, you can check. I think this is what you are looking for.