Reputation:
How to read the device name from phone setting in android, As shown in below image how to read the first field that is "device name" in android.
In some phones, the device name is the same as the model name but in some phones both are different so how to particular read device name from phone settings in android?
Any help is appreciated!
Upvotes: 4
Views: 6147
Reputation: 159
You can directly use this, Use in your logcat to see the result.
Build.DEVICE
Upvotes: 0
Reputation: 3699
here you go
Settings.Global.getString(getContentResolver(), Settings.Global.DEVICE_NAME)
Upvotes: 6