Skip to content

Releases: Kinvey/dotnet-sdk

Kinvey-Xamarin 1.5.4

03 Sep 18:39
Compare
Choose a tag to compare
  • Fixed an issue with AppData delete's URL generation

Kinvey-Xamarin 1.5.2

29 Jul 20:12
Compare
Choose a tag to compare
  • Bug Fix(es):
    • Fixed an issue when compiling with Google Play Services v25.0.0

Kinvey-Xamarin 1.5.0

04 Jun 17:45
Compare
Choose a tag to compare

1.5.0 - Jun 3, 2015
Added support for Kinvey-ios package, with support for iOS Push notifications through APN
Check out our Push Guide
LINQ refactorings to remove all JIT requirements for all platforms
Offline Appdata updates to support new version of SQLite.Net dependency

Kinvey-Xamarin 1.4.0

21 Apr 23:19
Compare
Choose a tag to compare
  • 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.

Xamarin Library v1.2.1

11 Mar 21:25
Compare
Choose a tag to compare
  • Improved error messaging for data-driven exceptions

Android-Extension Support

25 Feb 20:57
Compare
Choose a tag to compare

Adding support and cleanup for Android-Extension project

Bug Fixes

20 Jan 18:39
Compare
Choose a tag to compare
  • Added support for uploading streams in the File() API
    • myClient.File().upload(new FileMetaData("myFileId"), myFileStream, new KinveyDelegate<FileMetaData>{} );
  • Bug Fix(es):
    • Fixed an issue with the offline background execution of queries

Initial Release with async await

14 Jan 16:11
Compare
Choose a tag to compare
  • Deployed via nuget: nuget install kinvey
  • Added support for async await in User and AppData
  • Initial release of Xamarin Kinvey Library
  • Support for AppData, Caching and Offline, File, and User APIs

Offline and Querying

01 Aug 21:30
Compare
Choose a tag to compare
  • Adding support for querying via LINQ
    • Lamdas, Logical Operators, Comparison Operators,and Equality
    • AppData acts as a query provider
  • Adding support for Caching, implementation is in-memory
  • Added support for Offline, implementation is on disk using SQLite3
  • Added support for storing user credentials on disk
  • Multiple bug fixes and wrappers for convenience