MugenMvvmToolkit.Android.Fragment 3.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package MugenMvvmToolkit.Android.Fragment --version 3.3.0
NuGet\Install-Package MugenMvvmToolkit.Android.Fragment -Version 3.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MugenMvvmToolkit.Android.Fragment" Version="3.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MugenMvvmToolkit.Android.Fragment --version 3.3.0
#r "nuget: MugenMvvmToolkit.Android.Fragment, 3.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MugenMvvmToolkit.Android.Fragment as a Cake Addin
#addin nuget:?package=MugenMvvmToolkit.Android.Fragment&version=3.3.0

// Install MugenMvvmToolkit.Android.Fragment as a Cake Tool
#tool nuget:?package=MugenMvvmToolkit.Android.Fragment&version=3.3.0

This package adds Fragment support for Android with API >= 17 for MugenMvvmToolkit.

Product Compatible and additional computed target framework versions.
MonoAndroid monoandroid42 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.4.1 96 4/10/2015
3.4.0 51 4/5/2015
3.3.0 67 3/1/2015
1.0.0 88 12/31/2014

- Breaking changes in validation system.
     - Remove the interfaces responsible for data annotation validation, now data annotation validation is contained in the DataAnnotationValidatior class.
     - Changed the parameters of ValidateInternalAsync method for the ValidatorBase class.
     - Added the ability to cancel the validation for the ValidatorBase class.
     - Added support for Xamarin.iOS 64 bit (Unified API). Requires Xamarin.iOS 8.6.0.0 or newer. (iOS, Xamarin.Forms)
     - Added UseAnimations hint for navigation, it allows to animate view during navigation (iOS, Xamarin.Forms).
     - Added ICollectionViewManager and IContentViewManager for Android platform.
     - Added support for System.ComponentModel.TypeConverter (Binding).
     - Added support for params keyword (Binding).
     - Added support for the $src keyword (Binding).
     - Added support for attached events for the DataBinding markup extension (WPF).
     - Added BindingServiceProvider.BindingPathFactory static property that allows to create an instance of IBindingPath for the specified string.
     - Added GetMemberValue and SetMemberValue extension methods for IBindingMemberProvider.
     - Updated BindingResourceResolver now it tracks the resources and updates them if they have changed. Analog of dynamic resources for WPF.
     - Optimized memory usage for ViewModelBase.
     - Improved navigation system.
     - Removed support for MonoTouch.
     - Removed the AutoConvertValue property from the IBindingSourceAccessor interface, to disable value converter set BindingServiceProvider.ValueConverter to null.
     - Reduced memory usage (iOS, Android).
     - Minor changes.