Flutter语言 - 如何在不使用软件包的情况下获得mac地址



我知道如何使用get_mac flutter包获取mac地址

有没有人能告诉我如何在不使用任何软件包的情况下获得MAC地址

出于隐私考虑,你无法真正获得mac地址。旧版本的android可能会放弃它,但新版本只会给你占位符。

使用此方法

class GetMacAddress {
static const MethodChannel _channel = const MethodChannel('get_mac');
static Future<String> get macAddress async {
final String macID = await _channel.invokeMethod('getMacAddress');
return macID;
}
}

这样称呼

print(GetMacAddress.macAddress);

相关内容

  • 没有找到相关文章

最新更新