I have integrated parse.com in Unity app which worked correctly. Recently I upgraded unity version to 5.0 for 64 bit iOS Apps and parse queries are not returning anymore. I am using latest Parse SDK i.e. v1.3.4. I exported to xCode project using il2cpp framework.
Here is code I am trying
var query = ParseObject.GetQuery("Configuration").WhereEqualTo("Key", "MetaVersion");
query.FindAsync().ContinueWith(t->{
Debug.Log("Never gets printed");
});