russaa
russaa
I guess these flags are necessary for supporting `wakeUp()` and `unlock()`. I would propose, to require developers who want to use these functions/features, that they need to configure this before...
if you only need the wake-up feature (i.e. not unlock), you could try my branch: https://github.com/mmig/cordova-plugin-background-mode/tree/issue325_configure-wakeup-unlock you'd need to enable the the feature you want to use first,e.g. ```javascript cordova.plugins.backgroundMode.enableWakeUp();...
@Manja14 if you want to use the `unlock()` feature, then you have to life with this: putting the app "above the lock-screen" is how this plugin accomplishes the unlock (without...
you should check, if the "Google App" [play.google.com/com.google.android.googlequicksearchbox](https://play.google.com/store/apps/details?id=com.google.android.googlequicksearchbox) is installed: on most Android systems I've come across, the default/system speech recognition engine is the one that is provided by that...
a workaround I am currently using: create a minimal cordova plugin which basically only consists of the `plugin.xml` where the `WRITE_EXTERNAL_STORAGE` permission is removed, something like > EDIT: must use...
I have the same problem: version 3 seems to use `rxjs` v6, more specifically, the dependency `ngx-slimscroll` requires `rxjs` v6. The workarounds I came up with: The earlier versions 2.x.x...
@jkuri I have not tried it, but that would also require to update `rxjs` to v6, right? since in an `Angular` 5 project, most of the dependencies would probably be...
First off, from the error description and the example code, it is not clear, if you are really trying to _download_ a `Blob`, or if you are trying to _upload_...
see also related issue [cordova-plugin-file#243](https://github.com/apache/cordova-plugin-file/issues/243)
sorry for the late reaction: is there some more information, what exactly is "strange"? ~~As far as I remember, the abort-implementation for iOS was pretty straight forward, since the library...