1

我正在为 Xamarin android 和 iOS 使用 Kinvey db。它适用于 Android。在 iOS 模拟器中它工作正常,但在设备中它不工作。它给了我错误 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.

我正在尝试下面的代码

private Client myClient;
myClient = new Client.Builder ("kid_PeYFqjBcBJ","3fee066a01784e2ab32a255151ff761b").build ();
        await myClient.User ().LoginAsync ();
4

1 回答 1

1

这可能是由链接器问题引起的。

您可以在窗口中右键单击您的项目Solution,-> 'Options' -> Under Build,单击iOS Build

你应该看到Linker Behavior,你能符合这个设置Don't Link吗?

于 2015-09-03T18:51:40.320 回答