Mendix Native vs PWA for Bluetooth interaction

0
Hello, I am working on a project wherein I need to create a Mendix app that can interact with a BLE device. This application is to be used on mobile phones. For this use case, I explored and came to a conclusion that if I create a native mobile app I can make use of the ‘react-native-ble-plx’ library for interactions with peripheral devices whereas if I create a PWA I will have to use Bluetooth web APIs. I am not sure which one is the right approach to choose. Any guidance?
asked
1 answers
1

Generally you'd want to leverage platform API's and go for a native app for this kind of functionality. The browser API is experimental and will likely cause compatibility issues for your users. https://developer.mozilla.org/en-US/docs/Web/API/Web_Bluetooth_API#browser_compatibility

answered