Reputation: 3
How I can get the architecture of a snapdragon chip in android runtime ?
I don't have any idea how to do that.
Thank you.
Upvotes: 0
Views: 619
Reputation: 2547
Try using:
String arch = System.getProperty("os.arch");
Here is a complete list of System.getProperty() parameters.
System.getProperty()
Upvotes: 4