Inatel Teste Icc
Inatel Teste Icc

Reputation: 3

How I can get the architecture of the chip in android runtime

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

Answers (1)

GioLaq
GioLaq

Reputation: 2547

Try using:

String arch = System.getProperty("os.arch");

Here is a complete list of System.getProperty() parameters.

Upvotes: 4

Related Questions