Matt Lea

Results 15 comments of Matt Lea
trafficstars

@OxCom wow, that solved a somewhat unrelated problem I was having where the zoom and center was resetting pretty much every time I `setState` on anything. It was driving me...

@zafirskthelifehacker when you say "Also make sure you have `jcenter()`" is there a recommended way of adding it? I can manually do that locally but that wont work when someone...

I got it to build but now I am not getting the callback to fire at the end. Possibly related to https://github.com/spoonconsulting/cordova-plugin-background-upload/issues/109 ? Logcat would make me think the upload...

``` getBackgroundFileTransferManager() { if (!this.backgroundFileTransferManager) { this.backgroundFileTransferManager = new window.FileTransferManager.init( { // callBack: (event) => { console.log("X: ", event); } }, this.onBackgroundUploadEvent.bind(this)); } return this.backgroundFileTransferManager; } queueBackgroundUpload(payload: any) { this.getBackgroundFileTransferManager().startUpload(...