Created
September 25, 2018 18:22
-
-
Save Arturo0021/635bed11f8a1e189ebfc36b3bdcfeb0f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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