I\'m working on the recurring serial number topic to provide a unique id.
I try this :
String serial = null; try { Clas
Have you tried this?
String serial = null; try { Class> c = Class.forName("android.os.SystemProperties"); Method get = c.getMethod("get", String.class); serial = (String) get.invoke(c, "ril.serialnumber"); } catch (Exception ignored) { }