Karun Tahilramani

Results 13 comments of Karun Tahilramani

Is there a reason the livereload option doesn't run with `ionic capacitor build android`? The benefit with using `build` vs `run` is that it opens the Android SDK with the...

Having a similar issue with Android 11. Created issue 359 which details what I'm experiencing. BleClient.disconnect disconnects from BLE peripheral, but there's some setting that isn't fully implemented which prevents...

If it's helpful, here's how I structured my code (in Angular/Ionic) for connecting to a peripheral. If there's an error (in this case, there is a connection timeout error), then...

I don't think timeout is the issue. The exact same code worked 2 months ago prior to Android 11 upgrade, and I don't believe the default timeout has changed since.....

Turns out I’m having similar issue with the bleClient write function too. Anyone else experienced timeout error with write?

Here's a leaner, observables based, code to connect that is now working for me consistently: To connect to peripheral with BLE: ``` connectToDevice(){ const connectToDevice$: Observable = from(BleClient.requestDevice()).pipe( mergeMap(resp =>...

You could build in a fail-safe code/check into the plugin that re-attempts a connection in case a device specific issue causes the connection to not proceed the first time around....

Working on Windows 11 64 bit platform. Successfully Installed lv_img_conv with npm along with global installation of typescript and ts-node. Also installed canvas with its native dependencies (including cairo, gtx...

Absent other options, trying to run the ts-node command in node.js using `child-process.spawn("ts-node", ["./../external_libraries/lv_img_conv-master/lib/cli.ts", srcFile, "-f", "-o", destFile, "-c", "CF_TRUE_COLOR_ALPHA", "-t", "bin", "--binary-format", "ARGB8565"]);` But I keep on getting >...