- Added support for using the Mobile Identity Connect (MIC) oauth flow through the library
- Full details about usage are provided in the MIC guide
- myKinveyClient.User().LoginWithAuthorizationCodeLoginPage(myRedirect, myCallback);
- myKinveyClient.User().LoginWithAuthorizationCodeAPI(myUsername, myPassword, myRedirect, myCallback);
- For example:
kinveyClient.User().LoginWithAuthorizationCodeAPI("mjs", "demo", "kinveyAuthDemo://", new KinveyMICDelegate<User>{
onSuccess = (user) => {
RunOnUiThread (() => {
Toast.MakeText(this, "logged in as: " + user.Id, ToastLength.Short).Show();
});
},
onError = (error) => {
RunOnUiThread (() => {
Toast.MakeText(this, "something went wrong: " + error.Message, ToastLength.Short).Show();
});
}
});
- Bug Fix(es):
- Fixed an issue with updating google-support-v4 which caused compilation errors in
Resource.designer.cs
generation.