Philip Peitsch
Philip Peitsch
Hi @jlaverdure-talis I'm not that familiar with who or how the ionic native ble wrapper is maintained, unfortunately, so don't have any particular insights. The function in this plugin here...
@huiigary it appears that this method has not been exposed in the ionic wrapper: https://github.com/danielsogl/awesome-cordova-plugins/blob/master/src/%40awesome-cordova-plugins/plugins/ble/index.ts I'd suggest perhaps raising an issue against that repository to have these new methods exposed....
Seems like there was an issue raised that never got actioned for some reason: https://github.com/danielsogl/awesome-cordova-plugins/issues/3737 There was even a PR request that was raised, but it looks like it was...
Hi @Doomkyn I haven't experienced this issue with my own Huawei phone. Are you able to provide more detail about the Android version and model? It's also worth checking if...
No dramas at all @adelin-mcbsoft ! Can appreciate that time is always hard to find. Feel free to test when you have a moment... any feedback is welcome for certain!...
Thanks for the summary work @tellybrown ! Your understanding is correct in that the services and characteristics are not contained within the advertising data received during a scan. You must...
@riccardocostantini I've been using this version instead: https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background/src/master/ The exact code that works for me is: ``` function onDeviceReady() { cordova.plugins.backgroundMode.enable(); cordova.plugins.backgroundMode.on("activate", () => { cordova.plugins.backgroundMode.disableWebViewOptimizations(); }); cordova.plugins.backgroundMode.disableWebViewOptimizations(); } ```...
I have no obvious answers sorry @riccardocostantini Not sure if there's something different about your environment to my own test setup to cause this, but this kind of power thing...
@riccardocostantini killing the app is something done by Android. There's no protection or recovery guaranteed from this action by the user. See for models and details: https://dontkillmyapp.com/
Just as a point of interest, I have a patch up for Android at least that works to expose this crash event through the plugin interfaces. Hypothetically, it should be...