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;