MugenMvvmToolkit.Android.API8 1.2.0-beta4

This is a prerelease version of MugenMvvmToolkit.Android.API8.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package MugenMvvmToolkit.Android.API8 --version 1.2.0-beta4
NuGet\Install-Package MugenMvvmToolkit.Android.API8 -Version 1.2.0-beta4
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.API8" Version="1.2.0-beta4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MugenMvvmToolkit.Android.API8 --version 1.2.0-beta4
#r "nuget: MugenMvvmToolkit.Android.API8, 1.2.0-beta4"
#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.API8 as a Cake Addin
#addin nuget:?package=MugenMvvmToolkit.Android.API8&version=1.2.0-beta4&prerelease

// Install MugenMvvmToolkit.Android.API8 as a Cake Tool
#tool nuget:?package=MugenMvvmToolkit.Android.API8&version=1.2.0-beta4&prerelease

This package contains the Android assemblies for Android with API >= 10.
     Mugen MVVM Toolkit makes it easier to develop cross-platform application using the Model-View-ViewModel design pattern.
     The Mugen MVVM Toolkit provides a cross-platform MVVM development framework built on top of:
     - WinForms
     - WPF
     - Silverlight 5
     - Silverlight for WP7.1, WP8, WP8.1
     - Xamarin.Android
     - Xamarin.iOS
     - Xamarin.Forms
     - WinRT XAML framework for Windows 8 Store apps
     The MVVM framework includes the following features that differs this project from other frameworks:
     - Deep integration with each platform.
     - Supports state preservation and restoration for mobile platforms.
     - Full Fragment support for Android, you do not need to worry about activity, fragments, sub-fragments or their state all this makes the framework.
     - Solves the nested user controls problem in MVVM, all view models are dynamically created by you, using the GetViewModel method and you do not need to use the ViewModelLocator.
     - Supports all kinds of navigation like modal window, page navigation, tab navigation, back stack fragment navigation for android. You can also easily add a new kind of navigation.
     - Navigation system works with view models and allows to expect the completion of the operation. You can pass any parameters between view models.
     - Good design mode support, for xaml platforms supports the creation of design view model with any constructor parameters.
     - Supports bindings on all platforms, all of the native binding features available for WPF platform available on all platforms and even more.
     - Binding supports C# language expressions like Linq, Extension methods, method call, ternary operator (?:), coalescing operator (??), etc.
     - Supports subscription to any control event.
     - Built-in support for validation.
     - You can easily write their own extensions for bindings.
     - Supports attached members (properties, events, methods), you can extend any object as you want.
     - Special editor for WinForms, you do not need to write code to create bindings.
     - Binding parser builds syntax tree that allows you to easily change or extend the bindings, without manipulation of the raw text.
     - Binding supports fluent syntax.
     - Excellent binding performance.

Product Compatible and additional computed target framework versions.
.NET net6.0-android was computed.  net7.0-android was computed.  net8.0-android was computed. 
MonoAndroid monoandroid is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated

- Added Xamarin.Forms support
     - Updated android projects from API8 to API10
     - Fixed invalid binding validation when using $GetErrors method.
     - Added AsyncRelayCommand that allows to use Task in execute method.
     - Removed ThrowOnMultiInitialization property from IViewModelSettings.
     - Moved the Handle method from IEventListener to extension method.
     - Updated BindingEditor (WinForms).
     - Optimized delegate allocation.
     - Updated CompiledExpressionInvoker, now it can invoke dynamic members.
     - Minor changes.