For some strange reason the following code doesn't work properly on Android anymore. On iOS this code still works but for some reason on an Android device it looks like it doesn't send the parameters as form parameters to the server anymore. In previous versions (6.0.2.GA) of Titanium it worked properly. Now I am using the 7.2.0.GA SDK. Does anybody know what could cause this code not to work anymore after the upgrade?
var loginModel = {
username: 'blabla',
password: 'password'
};
xhr.open("POST", 'http://someurl');
xhr.send(loginModel);