Skip to content

Kinvey-Xamarin 1.4.0

Compare
Choose a tag to compare
@edatkinvey edatkinvey released this 21 Apr 23:19
· 1519 commits to master since this release
  • 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.