When running _tns livesync android_ I get ``` Error: stdout maxBuffer exceeded. ``` After the _Applying changes..._ message. Tablet: Asus MeMO Pad 7 K013 My solution - I changed the maxBuffer size inside lib/child-process.js ``` ChildProcess.prototype.exec = function (command, options) { options = options || {}; options.maxBuffer = 1024 * 2048; ```