Heshyo
Heshyo
As @boynet commented https://github.com/apache/cordova-plugin-inappbrowser/pull/263#issuecomment-442143355 , this works the 1st time a `customscheme` is opened. The following times, the callback is never called. This is linked to https://issues.apache.org/jira/browse/CB-13198 and the fix...
@josevavia If you're only after push notifications on Android, you can use https://github.com/havesource/cordova-plugin-push This is a replacement for https://github.com/phonegap/phonegap-plugin-push . It works well for me on Android, but I can't...
Funny thing: I have a USRP B210. If I try to connect to it passing the proper serial number while the firmware and/or gateware files are not already loaded nor...
Here's what I get using uhd_find_devices and uhd_usrp_probe: ``` uhd_find_devices.exe --args "serial=12345" No UHD Devices Found uhd_usrp_probe.exe --args "serial=12345" Error: LookupError: KeyError: No devices found for -----> Device Address: serial:...
Thanks, for now I just make sure the HW info isn't empty. It seems reliable enough for my use case ``` SoapySDRKwargs sdrInfo = SoapySDRDevice_getHardwareInfo(sdr); bool exist = sdrInfo.size !=...
I don't know if it's linked to https://github.com/apache/cordova-plugin-media/issues/293#issuecomment-766520722 , but I also fixed my issue on iOS by reverting from 5.0.3 to 4.0.
I'm using `ionic` and `cordova`. I have no issue with version `5.0.3` and `Android`, but I get the same issue on `iOS`: - if I create the `Media` and call...
Maybe you can use https://github.com/katzer/cordova-plugin-background-mode on Android.
++ It's easy to tap outside of the box unintentionally. Also you may wonder what happens if you tap outside instead of clicking OK/Cancel (did I just OKed or Cancelled...
I just saw https://github.com/apache/cordova-plugin-dialogs/pull/60 that actually added a `setCanceledOnTouchOutside`. I don't know if both `setCanceled` and `setCanceledOnTouchOutside` should be set (in my app I only use `setCanceled(false)` and it prevents...