├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── art └── icon.png ├── component ├── Details.md ├── DeviceInfoPlugin_128x128.png ├── DeviceInfoPlugin_512x512.png ├── GettingStarted.md ├── License.md └── component.template.yaml ├── nuget └── readme.txt ├── samples ├── DeviceInfoSample.sln ├── DeviceInfoSample │ ├── DeviceInfoSample.Droid │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── DeviceInfoSample.Droid.csproj │ │ ├── DeviceInfoSample.Droid.csproj.bak │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ └── drawable │ │ │ │ └── icon.png │ │ └── packages.config │ ├── DeviceInfoSample.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── DeviceInfoReadme.txt │ │ ├── DeviceInfoSample.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ ├── DeviceInfoSample.iOS │ │ ├── AppDelegate.cs │ │ ├── DeviceInfoSample.iOS.csproj │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ └── LaunchScreen.storyboard │ │ ├── iTunesArtwork │ │ ├── iTunesArtwork@2x │ │ └── packages.config │ ├── DeviceInfoSample │ │ ├── App.cs │ │ ├── DeviceInfoSample.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── DeviceInfoSampleMacOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-128.png │ │ │ ├── AppIcon-128@2x.png │ │ │ ├── AppIcon-16.png │ │ │ ├── AppIcon-16@2x.png │ │ │ ├── AppIcon-256.png │ │ │ ├── AppIcon-256@2x.png │ │ │ ├── AppIcon-32.png │ │ │ ├── AppIcon-32@2x.png │ │ │ ├── AppIcon-512.png │ │ │ ├── AppIcon-512@2x.png │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── DeviceInfoSampleMacOS.csproj │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Main.storyboard │ │ ├── ViewController.cs │ │ ├── ViewController.designer.cs │ │ └── packages.config └── TestDLLs │ ├── Plugin.DeviceInfo.Abstractions.dll │ ├── Plugin.DeviceInfo.dll │ └── Plugin.DeviceInfo.xml └── src ├── DeviceInfo.Plugin ├── CrossDeviceInfo.shared.cs ├── DeviceInfo.Plugin.csproj ├── DeviceInfo.android.cs ├── DeviceInfo.apple.cs ├── DeviceInfo.desktop.cs ├── DeviceInfo.tizen.cs ├── DeviceInfo.uwp.cs ├── IDeviceInfo.shared.cs ├── Idiom.shared.cs └── Platform.shared.cs └── DeviceInfo.sln /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 4.1.0 2 | Small Refactorings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/README.md -------------------------------------------------------------------------------- /art/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/art/icon.png -------------------------------------------------------------------------------- /component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/component/Details.md -------------------------------------------------------------------------------- /component/DeviceInfoPlugin_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/component/DeviceInfoPlugin_128x128.png -------------------------------------------------------------------------------- /component/DeviceInfoPlugin_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/component/DeviceInfoPlugin_512x512.png -------------------------------------------------------------------------------- /component/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/component/GettingStarted.md -------------------------------------------------------------------------------- /component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/component/License.md -------------------------------------------------------------------------------- /component/component.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/component/component.template.yaml -------------------------------------------------------------------------------- /nuget/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/nuget/readme.txt -------------------------------------------------------------------------------- /samples/DeviceInfoSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample.sln -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/DeviceInfoSample.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/DeviceInfoSample.Droid.csproj -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/DeviceInfoSample.Droid.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/DeviceInfoSample.Droid.csproj.bak -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/MainActivity.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/MainApplication.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.Droid/packages.config -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/App.xaml -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/App.xaml.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/DeviceInfoReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/DeviceInfoReadme.txt -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/DeviceInfoSample.WinPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/DeviceInfoSample.WinPhone.csproj -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/LocalizedStrings.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/MainPage.xaml -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Properties/AppManifest.xml -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/README_FIRST.txt -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Resources/AppResources.resx -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Toolkit.Content/ApplicationBar.Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Toolkit.Content/ApplicationBar.Add.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Toolkit.Content/ApplicationBar.Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Toolkit.Content/ApplicationBar.Check.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Toolkit.Content/ApplicationBar.Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Toolkit.Content/ApplicationBar.Delete.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Toolkit.Content/ApplicationBar.Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/Toolkit.Content/ApplicationBar.Select.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.WinPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.WinPhone/packages.config -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/DeviceInfoSample.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/DeviceInfoSample.iOS.csproj -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Entitlements.plist -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Info.plist -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Main.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Default.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/iTunesArtwork -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample.iOS/packages.config -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample/App.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample/DeviceInfoSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample/DeviceInfoSample.csproj -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSample/packages.config -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/AppDelegate.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/DeviceInfoSampleMacOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/DeviceInfoSampleMacOS.csproj -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Entitlements.plist -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Info.plist -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Main.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/Main.storyboard -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/ViewController.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/ViewController.designer.cs -------------------------------------------------------------------------------- /samples/DeviceInfoSample/DeviceInfoSampleMacOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/DeviceInfoSample/DeviceInfoSampleMacOS/packages.config -------------------------------------------------------------------------------- /samples/TestDLLs/Plugin.DeviceInfo.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/TestDLLs/Plugin.DeviceInfo.Abstractions.dll -------------------------------------------------------------------------------- /samples/TestDLLs/Plugin.DeviceInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/TestDLLs/Plugin.DeviceInfo.dll -------------------------------------------------------------------------------- /samples/TestDLLs/Plugin.DeviceInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/samples/TestDLLs/Plugin.DeviceInfo.xml -------------------------------------------------------------------------------- /src/DeviceInfo.Plugin/CrossDeviceInfo.shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/src/DeviceInfo.Plugin/CrossDeviceInfo.shared.cs -------------------------------------------------------------------------------- /src/DeviceInfo.Plugin/DeviceInfo.Plugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/src/DeviceInfo.Plugin/DeviceInfo.Plugin.csproj -------------------------------------------------------------------------------- /src/DeviceInfo.Plugin/DeviceInfo.android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/src/DeviceInfo.Plugin/DeviceInfo.android.cs -------------------------------------------------------------------------------- /src/DeviceInfo.Plugin/DeviceInfo.apple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/src/DeviceInfo.Plugin/DeviceInfo.apple.cs -------------------------------------------------------------------------------- /src/DeviceInfo.Plugin/DeviceInfo.desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/src/DeviceInfo.Plugin/DeviceInfo.desktop.cs -------------------------------------------------------------------------------- /src/DeviceInfo.Plugin/DeviceInfo.tizen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/src/DeviceInfo.Plugin/DeviceInfo.tizen.cs -------------------------------------------------------------------------------- /src/DeviceInfo.Plugin/DeviceInfo.uwp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/src/DeviceInfo.Plugin/DeviceInfo.uwp.cs -------------------------------------------------------------------------------- /src/DeviceInfo.Plugin/IDeviceInfo.shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/src/DeviceInfo.Plugin/IDeviceInfo.shared.cs -------------------------------------------------------------------------------- /src/DeviceInfo.Plugin/Idiom.shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/src/DeviceInfo.Plugin/Idiom.shared.cs -------------------------------------------------------------------------------- /src/DeviceInfo.Plugin/Platform.shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/src/DeviceInfo.Plugin/Platform.shared.cs -------------------------------------------------------------------------------- /src/DeviceInfo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/DeviceInfoPlugin/HEAD/src/DeviceInfo.sln --------------------------------------------------------------------------------