Cross platform bluetooth development solutions

Viewed 509

I made a little heart rate monitor app with Unity, but trying to ship it to Windows, the bluetooth part isn't cross platform.

Are there existing cross platform (mac/windows, linux too would be nice but not a dealbreaker) bluetooth solutions?

1 Answers

Unfortunately there isn't a "pure" cross-platform solution where you can write one application that works across multiple platforms. This is because the underlying stack for different OSes/platforms is different because the hardware is different for them. The closest thing to a cross-platform solution might be Xamarin as theoretically you can write an application that works for Android/iOS/Windows. Have a look at the links below:-

Related