Acr.Settings
3.0.0
See the version list below for details.
dotnet add package Acr.Settings --version 3.0.0
NuGet\Install-Package Acr.Settings -Version 3.0.0
<PackageReference Include="Acr.Settings" Version="3.0.0" />
paket add Acr.Settings --version 3.0.0
#r "nuget: Acr.Settings, 3.0.0"
// Install Acr.Settings as a Cake Addin #addin nuget:?package=Acr.Settings&version=3.0.0 // Install Acr.Settings as a Cake Tool #tool nuget:?package=Acr.Settings&version=3.0.0
#ACR Xplat Settings Plugin for Xamarin and Windows
##To use, simply call:
var int1 = Settings.Instance.Get<int>("Key");
var int2 = Settings.Instance.Get<int?>("Key");
Settings.Instance.Set("Key", AnyObject); // converts to JSON
var obj = Settings.Instance.Get<AnyObject>("Key");
##To supply your own implementation:
Settings.Instance = new YourImplementationInheritingISettings();
##Monitor setting changes:
Settings.Changed += (sender, args) => {
Console.WriteLine(args.Action);
Console.WriteLine(args.Key);
Console.WriteLine(args.Value);
};
###In your platform project (NOT YOUR PCL)
####For DI:
container.RegisterSingleton<ISettings, SettingsImpl>();
####For MvvmCross:
Mvx.RegisterSingleton<ISettings, SettingsImpl>();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
MonoAndroid | monoandroid10 is compatible. |
Xamarin.iOS | xamarinios10 is compatible. |
-
- Newtonsoft.Json (>= 6.0.8 && < 7.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Acr.Settings:
Package | Downloads |
---|---|
Estimotes.Xplat
Estimotes Plugin for Xamarin to allow for cross platform development using the Estimote libraries |
|
Innbox.XF.ToolKit
InnBox Xamarin Forms ToolKit |
|
Matthieume.Estimotes.Xplat
Estimotes Plugin for Xamarin to allow for cross platform development using the Estimote libraries |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
9.0.1 | 56,805 | 8/27/2018 | |
9.0.0 | 8,220 | 4/13/2018 | |
8.0.0 | 10,477 | 11/20/2017 | |
7.0.2 | 8,453 | 10/7/2017 | |
7.0.1 | 1,615 | 10/5/2017 | |
7.0.0 | 3,372 | 9/29/2017 | |
6.0.1 | 12,065 | 4/21/2017 | |
6.0.0 | 6,965 | 3/28/2017 | |
5.1.1 | 21,379 | 7/4/2016 | |
5.1.0 | 6,891 | 3/11/2016 | |
5.0.0 | 7,360 | 3/10/2016 | |
4.3.9 | 2,231 | 1/8/2016 | |
4.3.8 | 1,636 | 1/3/2016 | |
4.3.6 | 1,731 | 10/28/2015 | |
4.3.5 | 1,366 | 10/23/2015 | |
4.3.4 | 1,435 | 10/13/2015 | |
4.3.3 | 1,288 | 10/11/2015 | |
4.3.2 | 3,420 | 10/7/2015 | |
4.3.1 | 2,795 | 9/22/2015 | |
4.3.0 | 2,993 | 8/16/2015 | |
4.2.5 | 5,505 | 7/13/2015 | |
4.2.4 | 1,405 | 7/13/2015 | |
4.2.3 | 1,351 | 7/5/2015 | |
4.2.2 | 1,429 | 6/23/2015 | |
4.2.1 | 1,319 | 6/22/2015 | |
4.2.0 | 1,749 | 6/21/2015 | |
4.1.0 | 1,551 | 6/1/2015 | |
4.0.1 | 1,431 | 5/25/2015 | |
4.0.0 | 1,344 | 5/22/2015 | |
3.0.4 | 1,337 | 5/20/2015 | |
3.0.3 | 1,634 | 4/30/2015 | |
3.0.2 | 1,429 | 4/3/2015 | |
3.0.1 | 1,651 | 2/13/2015 | |
3.0.0 | 1,739 | 2/5/2015 |
3.0.0
Vastly new underlying design and API
Moving to bait and switch design
2.1.1
Fix iOS Settings issue
2.1
Better structure to observable dictionary of settings
FIX: bug with resync calling clear event which removes some necessary iOS settings
2.0
Now works as an observable observable dictionary
New extension methods for supporting several other data types
1.0
Initial Release