Closed
Description
I have a very strange issue.
When running a very simple project from scratch with :
Parse.enableLocalDatastore(this);
Parse.initialize(this);
ParseObject testObject = new ParseObject("TestObject");
testObject.put("foo", "bar");
testObject.saveInBackground();
everything works fine
the request is made to
https://api.parse.com/1/classes/TestObject
and everything works fine
However if I try to integrate my existing app and place same code inside custom application (+keys in manifest) the api call fails with 404. Reason being that it pokes
https://api.parse.com/classes/TestObject
notice lack of /1/
If I manually catch above request in proxy and re-execute it with same data, it passes.
Any ideas why the /1/ is not being added?