I'm using Kinvey db for Xamarin android and iOS.
It is working fine for Android. In iOS simulator it is working fine, but in device it is not working. It gives me error
Unable to find a constructor to use for type KinveyXamarin.KinveyAuthResponse. A class should either have a default constructor, one constructor with arguments or a constructor marked with the JsonConstructor attribute. Path 'username', line 1, position 12.
I'm trying below code
private Client myClient;
myClient = new Client.Builder ("kid_PeYFqjBcBJ","3fee066a01784e2ab32a255151ff761b").build ();
await myClient.User ().LoginAsync ();