user291701
user291701

Reputation: 39721

Is android.os.Build.MODEL stable?

Does anyone know if Build.Model is stable? Can we rely on it not changing between updates from the manufacturer?

http://developer.android.com/reference/android/os/Build.html#MODEL

Thanks

Upvotes: 0

Views: 289

Answers (1)

CommonsWare
CommonsWare

Reputation: 1007464

Can we rely on it not changing between updates from the manufacturer?

Yes, simply because it is a static final value, and therefore cannot change except by "updates from the manufacturer" to change the class definition.

Upvotes: 1

Related Questions