react-native-device-info

getDeviceName does not return device name on android


I'm using react-native-device-info to get device name. But getDeviceName returns unknown in Android. It's working good in iOS.

version:

Any help is much appreciated. thanks!


Solution

  • You need to add bluetooth permission in AndroidManifest.xml

    <uses-permission android:name="android.permission.BLUETOOTH"/>
    

    ref: https://developer.android.com/reference/android/Manifest.permission.html#BLUETOOTH