嗨我想获得自己的蓝牙mac地址。我可以获得本地的mac地址吗?我已经尝试通过其中一个react native package.it获取蓝牙所在的所有蓝牙mac地址。但是我无法获得我自己的手机蓝牙的本地mac地址运行应用程序
答案 0 :(得分:0)
我真的不认为提供这种服务的套餐存在,这是一个非常小众的事情。
您需要制作自己的原生模块,请参阅此示例: https://facebook.github.io/react-native/docs/native-modules-android.html
然后您可以使用它来获取Android上的MAC地址:
error: borrowed value does not live long enough
--> src/main.rs:4:63
|
4 | let result = VALUES.iter().find(|&&(name, _)| name == 'A');
| ------ temporary value created here ^ temporary value dropped here while still borrowed
5 | }
| - temporary value needs to live until here
|
= note: consider using a `let` binding to increase its lifetime