├── Lager.Android ├── Resources │ └── Resource.Designer.cs ├── app.config ├── packages.config ├── Properties │ └── AssemblyInfo.cs ├── Lager.Android.nuspec ├── Reflection.cs ├── Lager.Android.csproj └── PreferenceExtensions.cs ├── .nuget ├── NuGet.exe ├── NuGet.Config └── NuGet.targets ├── AndroidExample ├── Resources │ ├── Drawable │ │ └── Icon.png │ ├── Values │ │ └── Strings.xml │ ├── Layout │ │ ├── Main.axml │ │ └── Settings.axml │ └── Resource.Designer.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── AkavacheSqliteLinkerOverride.cs ├── app.config ├── MainActivity.cs ├── TestSettings.cs ├── packages.config ├── SettingsActivity.cs └── AndroidExample.csproj ├── Lager ├── app.config ├── packages.config ├── Properties │ └── AssemblyInfo.cs ├── Lager.nuspec ├── Lager.csproj └── SettingsStorage.cs ├── Lager.Tests ├── app.config ├── SettingsStorageProxy.cs ├── DummySettingsStorage.cs ├── packages.config ├── Properties │ └── AssemblyInfo.cs ├── SettingsStorageTest.cs └── Lager.Tests.csproj ├── .gitattributes ├── LICENSE ├── .gitignore ├── Lager.sln └── Readme.md /Lager.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbug/Lager/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /AndroidExample/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flagbug/Lager/HEAD/AndroidExample/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AndroidExample/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AndroidExample/Resources/Values/Strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello World, Click Me! 4 | AndroidTest 5 | 6 | Item 1 7 | Item 2 8 | Item 3 9 | 10 | -------------------------------------------------------------------------------- /Lager/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Lager.Android/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Lager.Tests/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /AndroidExample/Resources/Layout/Main.axml: -------------------------------------------------------------------------------- 1 | 2 | 7 |