Jamie Barker
Jamie Barker
Same issue with ionic 2, I have: app.module.ts: ```javascript import { Insomnia } from '@ionic-native/insomnia'; providers: [ Insomnia, ] export class AppModule { constructor(private backgroundMode: BackgroundMode, public platform: Platform, private...
+1 one, about to get my head chopped off, happy to pay for your time to help asap
DId anyone have any luck with this. It's really driving me insane, not to mention getting yelled at by the client. Are we doing this right? Should the code go...
@EddyVerbruggen Bhahahaha. Unfortunately my client is a good friend of mine :) Poor bastard has gone through 5 devs on this project and it was suppose to be completed in...
Ok, so I'm calling keepAwake() on a manual button now but still have the same issue. Issue. 1. If the app is selected and running in the background eg: hit...
I have a feeling this is a security issue?
Ok, this is getting nuts @EddyVerbruggen . This plugin does not work :( what am I doing wrong? I've put in in home page, I've put it in a button......
@EddyVerbruggen Thanks man! I'm going to have a long needed day away from this stupid computer today :) but I'll do that tonight. I made some discoveries yesterday though. Your...
Update: Ok, I got it working using then() and not subscribe() ``` this.ble.disconnect(this.device_id).then(() => { console.log('Disconnected'); }); ``` BUT I need a 'failed' callback like the cordova plugin docs say...