Right now i am trying to get mac address for tablets and smartphone in android.
I have tried with the below code.
TelephonyManager tm = (TelephonyManager)Current_activity_name.this.getSystemService(Context.TELEPHONY_SERVICE);
String str_macid = tm.getDeviceId();
this code is working only for smartphone but not for tablets.Why?
Suggestions please..
Thanks for your precious time!..