Skip to content

Instantly share code, notes, and snippets.

@Arturo0021
Created September 25, 2018 18:22
Show Gist options
  • Save Arturo0021/635bed11f8a1e189ebfc36b3bdcfeb0f to your computer and use it in GitHub Desktop.
Save Arturo0021/635bed11f8a1e189ebfc36b3bdcfeb0f to your computer and use it in GitHub Desktop.
Build.MANUFACTURER // Fabricante
Build.BRAND // = Manufacturer
Build.MODEL; // Nombre del Equipo
Build.VERSION.RELEASE // Version de Android
Build.VERSION.SDK_INT // Version del SDK
IMEI
if (Build.VERSION.SDK_INT > Build.VERSION_CODES.KITKAT) {
telephonyManager.getImei();
} else {
telephonyManager.getDeviceId();
}
SIM
telephonyManager.getSimSerialNumber();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment