-1

As the title.

I want get device Mac Address on iOS(can find on iPhone Settings --> General --> About -> Wi-Fi Address) and Android with ReactNative.

thanks.

Dheeraj D
  • 4,386
  • 4
  • 20
  • 34
liupeixin
  • 718
  • 1
  • 9
  • 15

1 Answers1

1

Generally if you're wondering how to access a bit of system information with React Native, you could write a small native module that calls the same functions you would as if you were writing a UIKit app -- there's nothing unique about React Native in many cases.

But on iOS when you ask for the MAC you will always get back 02:00:00:00:00:00 -- what you are asking for is not feasible. See https://stackoverflow.com/a/18911557/454967.

Community
  • 1
  • 1
ide
  • 19,942
  • 5
  • 64
  • 106