Vladimir Kucev

Results 3 comments of Vladimir Kucev

Yes, you can run it by following this [guide](https://expo.canny.io/feature-requests/p/bluetooth-1), but you can't use it with an emulator or the "Expo Go" app! You have to build your test build.

This is because "device.services()" returns a promise so you just have to resolve it. like: (discoverAllServicesAndCharacteristicsForDevice(device.id).then(device => device.services()).then()) or: discoverAllServicesAndCharacteristicsForDevice(device.id).then(async device => await device.services()) I prefer to write my function...

I'm experiencing the same issue with `"drizzle-kit": "^0.30.5"`. ✅ I was able to resolve it by reverting to `"drizzle-kit": "^0.30.2"`. Hope this helps others until the issue is fixed in...