I am having a tough time in finding out the solution of this error:
GooglePlayServicesUtil: The Google Play services resources were not found. Check your project configuration to ensure that the resources are included
I am using CloudPush module, and the weird thing is that till yesterday everything was working perfectly and I was receiving push messages properly. I tried receiving more than 100 push messages.....but suddenly it stopped working and even I am not getting any device token.
var CloudPush = require('ti.cloudpush');
if (CloudPush.isGooglePlayServicesAvailable()) {
CloudPush.retrieveDeviceToken({
success : tokenSuccess,
error : tokenError
});
// Process incoming push notifications
CloudPush.addEventListener('callback', pushRecieve);
} else {
alert("Please enable Google Play Services to register for notifications.");
}
This is the code I have been using, but God knows why it stopped working suddenly. The only thing I can remember I changed in between is updating the Titanium SDK to 5.3.0.GA, Studio to 4.6.0 and so does everything to its latest version including the CLI also.
But I have been still using 5.2.2, can anyone help me on this or is this going to be rare kind of bug...????