Android 获取SN
Java
public static String GetSN()
{
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
return Build.getSerial();
} else {
return Build.SERIAL;
}
}
AndroidManifest.xml
故障排除
1.Android10 异常错误
getSerial: The user 10124 does not meet the requirements to access device identifiers.
只有Google应用程序和手机制造商应用程序(或者如果您是设备管理
Android 获取SN最先出现在Python成神之路。
共有 0 条评论