How to Get Device Information in Android
Learn how to uniquely identify users by using parts of device information on Android.
Join the DZone community and get the full member experience.
Join For FreeThe following code snippet will get the device detailed information in Android.
public class DashboardActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
String details = "VERSION.RELEASE : "+Build.VERSION.RELEASE
+"\nVERSION.INCREMENTAL : "+Build.VERSION.INCREMENTAL
+"\nVERSION.SDK.NUMBER : "+Build.VERSION.SDK_INT
+"\nBOARD : "+Build.BOARD
+"\nBOOTLOADER : "+Build.BOOTLOADER
+"\nBRAND : "+Build.BRAND
+"\nCPU_ABI : "+Build.CPU_ABI
+"\nCPU_ABI2 : "+Build.CPU_ABI2
+"\nDISPLAY : "+Build.DISPLAY
+"\nFINGERPRINT : "+Build.FINGERPRINT
+"\nHARDWARE : "+Build.HARDWARE
+"\nHOST : "+Build.HOST
+"\nID : "+Build.ID
+"\nMANUFACTURER : "+Build.MANUFACTURER
+"\nMODEL : "+Build.MODEL
+"\nPRODUCT : "+Build.PRODUCT
+"\nSERIAL : "+Build.SERIAL
+"\nTAGS : "+Build.TAGS
+"\nTIME : "+Build.TIME
+"\nTYPE : "+Build.TYPE
+"\nUNKNOWN : "+Build.UNKNOWN
+"\nUSER : "+Build.USER;
TextView textView = new TextView();
textView.setText(details);
setContentView(textView);
}
}
Published at DZone with permission of Nilanchala Panigrahy, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments