Releases: Kinvey/dotnet-sdk
Releases · Kinvey/dotnet-sdk
Kinvey-Xamarin 1.5.4
- Fixed an issue with AppData delete's URL generation
Kinvey-Xamarin 1.5.2
- Bug Fix(es):
- Fixed an issue when compiling with Google Play Services v25.0.0
Kinvey-Xamarin 1.5.0
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
- 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.
- Fixed an issue with updating google-support-v4 which caused compilation errors in
Xamarin Library v1.2.1
- Improved error messaging for data-driven exceptions
Android-Extension Support
Adding support and cleanup for Android-Extension project
Bug Fixes
- 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
- 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
- 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