├── README.md ├── iOS ├── Assets.xcassets │ ├── Contents.json │ └── AppIcons.appiconset │ │ └── Contents.json ├── packages.config ├── Entitlements.plist ├── Main.cs ├── AppDelegate.cs ├── LaunchScreen.storyboard ├── Info.plist └── Mvvmdex.iOS.csproj ├── Mvvmdex.Uwp ├── Assets │ ├── StoreLogo.png │ ├── SplashScreen.scale-200.png │ ├── LockScreenLogo.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Wide310x150Logo.scale-200.png │ └── Square44x44Logo.targetsize-24_altform-unplated.png ├── ApplicationInsights.config ├── App.xaml ├── MainPage.xaml ├── project.json ├── MainPage.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Package.appxmanifest ├── App.xaml.cs └── Mvvmdex.Uwp.csproj ├── Droid ├── Resources │ ├── drawable │ │ └── icon.png │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-xhdpi │ │ └── icon.png │ ├── drawable-xxhdpi │ │ └── icon.png │ ├── layout │ │ ├── Toolbar.axml │ │ └── Tabbar.axml │ ├── values │ │ └── styles.xml │ └── AboutResources.txt ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Assets │ └── AboutAssets.txt ├── MainActivity.cs ├── app.config ├── packages.config └── Mvvmdex.Droid.csproj ├── Views ├── packages.config ├── App.xaml ├── MvvmdexPage.xaml.cs ├── Converters │ ├── BooleanInverterConverter.cs │ └── ShapeToEmojiConverter.cs ├── App.xaml.cs ├── Properties │ └── AssemblyInfo.cs ├── MvvmdexPage.xaml └── Mvvmdex.Views.csproj ├── Models ├── Pokemon.cs ├── MvvmdexClient.cs ├── Properties │ └── AssemblyInfo.cs ├── packages.config └── Mvvmdex.Models.csproj ├── ViewModels ├── BuscaPokemonCommand.cs ├── Properties │ └── AssemblyInfo.cs ├── Mvvmdex.ViewModels.csproj └── PokemonSearchViewModel.cs ├── .gitignore └── Mvvmdex.sln /README.md: -------------------------------------------------------------------------------- 1 | # xfmvvm 2 | Model-View-ViewModel tutorial with Xamarin.Forms 3 | -------------------------------------------------------------------------------- /iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Mvvmdex.Uwp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/xfmvvm/master/Mvvmdex.Uwp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/xfmvvm/master/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/xfmvvm/master/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/xfmvvm/master/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/xfmvvm/master/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /Mvvmdex.Uwp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/xfmvvm/master/Mvvmdex.Uwp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Mvvmdex.Uwp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/xfmvvm/master/Mvvmdex.Uwp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Mvvmdex.Uwp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/xfmvvm/master/Mvvmdex.Uwp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Mvvmdex.Uwp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/xfmvvm/master/Mvvmdex.Uwp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Mvvmdex.Uwp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/xfmvvm/master/Mvvmdex.Uwp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /iOS/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Views/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Mvvmdex.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thatcsharpguy/xfmvvm/master/Mvvmdex.Uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Mvvmdex.Uwp/ApplicationInsights.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Models/Pokemon.cs: -------------------------------------------------------------------------------- 1 | namespace Mvvmdex.Models 2 | { 3 | public class Pokemon 4 | { 5 | public int Id { get; set; } 6 | public string Name { get; set; } 7 | public string Shape { get; set; } 8 | public string Description { get; set; } 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /Mvvmdex.Uwp/App.xaml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Views/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Views/MvvmdexPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using Mvvmdex.ViewModels; 2 | using Xamarin.Forms; 3 | 4 | namespace Mvvmdex.Views 5 | { 6 | public partial class MvvmdexPage : ContentPage 7 | { 8 | public MvvmdexPage() 9 | { 10 | BindingContext = new PokemonSearchViewModel(); 11 | InitializeComponent(); 12 | } 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Mvvmdex.Uwp/MainPage.xaml: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /iOS/Main.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace Mvvmdex.iOS 9 | { 10 | public class Application 11 | { 12 | // This is the main entry point of the application. 13 | static void Main(string[] args) 14 | { 15 | // if you want to use a different Application Delegate class from "AppDelegate" 16 | // you can specify it here. 17 | UIApplication.Main(args, null, "AppDelegate"); 18 | } 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /Views/Converters/BooleanInverterConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using Xamarin.Forms; 4 | 5 | namespace Mvvmdex.Views.Converters 6 | { 7 | public class BooleanInverterConverter : IValueConverter 8 | { 9 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 10 | { 11 | return !(bool)value; 12 | } 13 | 14 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 15 | { 16 | throw new NotImplementedException(); 17 | } 18 | } 19 | } 20 | 21 | -------------------------------------------------------------------------------- /iOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace Mvvmdex.iOS 9 | { 10 | [Register("AppDelegate")] 11 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate 12 | { 13 | public override bool FinishedLaunching(UIApplication app, NSDictionary options) 14 | { 15 | global::Xamarin.Forms.Forms.Init(); 16 | 17 | LoadApplication(new Mvvmdex.Views.App()); 18 | 19 | return base.FinishedLaunching(app, options); 20 | } 21 | } 22 | } 23 | 24 | -------------------------------------------------------------------------------- /Mvvmdex.Uwp/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "Microsoft.ApplicationInsights": "1.0.0", 4 | "Microsoft.ApplicationInsights.PersistenceChannel": "1.0.0", 5 | "Microsoft.ApplicationInsights.WindowsApps": "1.0.0", 6 | "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0", 7 | "Newtonsoft.Json": "9.0.1", 8 | "Xamarin.Forms": "2.3.1.110-pre1" 9 | }, 10 | "frameworks": { 11 | "uap10.0": {} 12 | }, 13 | "runtimes": { 14 | "win10-arm": {}, 15 | "win10-arm-aot": {}, 16 | "win10-x86": {}, 17 | "win10-x86-aot": {}, 18 | "win10-x64": {}, 19 | "win10-x64-aot": {} 20 | } 21 | } -------------------------------------------------------------------------------- /Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with your package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /Views/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Forms; 2 | 3 | namespace Mvvmdex.Views 4 | { 5 | public partial class App : Application 6 | { 7 | public App() 8 | { 9 | InitializeComponent(); 10 | 11 | MainPage = new NavigationPage(new MvvmdexPage()); 12 | } 13 | 14 | protected override void OnStart() 15 | { 16 | // Handle when your app starts 17 | } 18 | 19 | protected override void OnSleep() 20 | { 21 | // Handle when your app sleeps 22 | } 23 | 24 | protected override void OnResume() 25 | { 26 | // Handle when your app resumes 27 | } 28 | } 29 | } 30 | 31 | -------------------------------------------------------------------------------- /ViewModels/BuscaPokemonCommand.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows.Input; 7 | 8 | namespace Mvvmdex.ViewModels 9 | { 10 | public class BuscaPokemonCommand : ICommand 11 | { 12 | private readonly Action _search; 13 | public BuscaPokemonCommand(Action search) 14 | { 15 | _search = search; 16 | } 17 | 18 | public bool CanExecute(object parameter) 19 | { 20 | return true; 21 | } 22 | 23 | public void Execute(object parameter) 24 | { 25 | _search(); 26 | } 27 | 28 | public event EventHandler CanExecuteChanged; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Droid/MainActivity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | using Android.App; 4 | using Android.Content; 5 | using Android.Content.PM; 6 | using Android.Runtime; 7 | using Android.Views; 8 | using Android.Widget; 9 | using Android.OS; 10 | 11 | namespace Mvvmdex.Droid 12 | { 13 | [Activity(Label = "Mvvmdex.Droid", Icon = "@drawable/icon", Theme = "@style/MyTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] 14 | public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity 15 | { 16 | protected override void OnCreate(Bundle bundle) 17 | { 18 | TabLayoutResource = Resource.Layout.Tabbar; 19 | ToolbarResource = Resource.Layout.Toolbar; 20 | 21 | base.OnCreate(bundle); 22 | 23 | global::Xamarin.Forms.Forms.Init(this, bundle); 24 | 25 | LoadApplication(new Views.App()); 26 | } 27 | } 28 | } 29 | 30 | -------------------------------------------------------------------------------- /Droid/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Models/MvvmdexClient.cs: -------------------------------------------------------------------------------- 1 | using System.Linq; 2 | using System.Threading.Tasks; 3 | using Jirapi; 4 | 5 | namespace Mvvmdex.Models 6 | { 7 | public class MvvmdexClient 8 | { 9 | PokeClient _client; 10 | public MvvmdexClient() 11 | { 12 | _client = new PokeClient(); 13 | } 14 | 15 | public async Task SearchForPokemon(string pokemonName) 16 | { 17 | // This could be anything, from a database to a connection to a web service: 18 | try 19 | { 20 | var pkmn = await _client.Get(pokemonName); 21 | var species = await pkmn.Species.GetResource(_client); 22 | 23 | return new Pokemon 24 | { 25 | Id = pkmn.Id, 26 | Name = pkmn.Name, 27 | Description = species.FlavorTextEntries 28 | .FirstOrDefault(te => te.Language.Name == "en") 29 | .FlavorText.Replace("\n",""), 30 | Shape = species.Shape.Name 31 | }; 32 | } 33 | catch(System.Exception e) 34 | { 35 | return null; 36 | } 37 | } 38 | } 39 | } 40 | 41 | -------------------------------------------------------------------------------- /Mvvmdex.Uwp/MainPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Runtime.InteropServices.WindowsRuntime; 6 | using Windows.Foundation; 7 | using Windows.Foundation.Collections; 8 | using Windows.UI.Xaml; 9 | using Windows.UI.Xaml.Controls; 10 | using Windows.UI.Xaml.Controls.Primitives; 11 | using Windows.UI.Xaml.Data; 12 | using Windows.UI.Xaml.Input; 13 | using Windows.UI.Xaml.Media; 14 | using Windows.UI.Xaml.Navigation; 15 | using Xamarin.Forms.Platform.UWP; 16 | 17 | // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409 18 | 19 | namespace Mvvmdex.Uwp 20 | { 21 | /// 22 | /// An empty page that can be used on its own or navigated to within a Frame. 23 | /// 24 | public sealed partial class MainPage : WindowsPage 25 | { 26 | public MainPage() 27 | { 28 | this.InitializeComponent(); 29 | LoadApplication(new Mvvmdex.Views.App()); 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Droid/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Views/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | // Information about this assembly is defined by the following attributes. 5 | // Change them to the values specific to your project. 6 | 7 | [assembly: AssemblyTitle("Mvvmdex")] 8 | [assembly: AssemblyDescription("")] 9 | [assembly: AssemblyConfiguration("")] 10 | [assembly: AssemblyCompany("")] 11 | [assembly: AssemblyProduct("")] 12 | [assembly: AssemblyCopyright("fferegrino")] 13 | [assembly: AssemblyTrademark("")] 14 | [assembly: AssemblyCulture("")] 15 | 16 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 17 | // The form "{Major}.{Minor}.*" will automatically update the build and revision, 18 | // and "{Major}.{Minor}.{Build}.*" will update just the revision. 19 | 20 | [assembly: AssemblyVersion("1.0.*")] 21 | 22 | // The following attributes are used to specify the signing key for the assembly, 23 | // if desired. See the Mono documentation for more information about signing. 24 | 25 | //[assembly: AssemblyDelaySign(false)] 26 | //[assembly: AssemblyKeyFile("")] 27 | 28 | -------------------------------------------------------------------------------- /Models/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | // Information about this assembly is defined by the following attributes. 5 | // Change them to the values specific to your project. 6 | 7 | [assembly: AssemblyTitle("Mvvmdex.Models")] 8 | [assembly: AssemblyDescription("")] 9 | [assembly: AssemblyConfiguration("")] 10 | [assembly: AssemblyCompany("")] 11 | [assembly: AssemblyProduct("")] 12 | [assembly: AssemblyCopyright("fferegrino")] 13 | [assembly: AssemblyTrademark("")] 14 | [assembly: AssemblyCulture("")] 15 | 16 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 17 | // The form "{Major}.{Minor}.*" will automatically update the build and revision, 18 | // and "{Major}.{Minor}.{Build}.*" will update just the revision. 19 | 20 | [assembly: AssemblyVersion("1.0.*")] 21 | 22 | // The following attributes are used to specify the signing key for the assembly, 23 | // if desired. See the Mono documentation for more information about signing. 24 | 25 | //[assembly: AssemblyDelaySign(false)] 26 | //[assembly: AssemblyKeyFile("")] 27 | 28 | -------------------------------------------------------------------------------- /ViewModels/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | // Information about this assembly is defined by the following attributes. 5 | // Change them to the values specific to your project. 6 | 7 | [assembly: AssemblyTitle("Mvvmdex.ViewModels")] 8 | [assembly: AssemblyDescription("")] 9 | [assembly: AssemblyConfiguration("")] 10 | [assembly: AssemblyCompany("")] 11 | [assembly: AssemblyProduct("")] 12 | [assembly: AssemblyCopyright("fferegrino")] 13 | [assembly: AssemblyTrademark("")] 14 | [assembly: AssemblyCulture("")] 15 | 16 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 17 | // The form "{Major}.{Minor}.*" will automatically update the build and revision, 18 | // and "{Major}.{Minor}.{Build}.*" will update just the revision. 19 | 20 | [assembly: AssemblyVersion("1.0.*")] 21 | 22 | // The following attributes are used to specify the signing key for the assembly, 23 | // if desired. See the Mono documentation for more information about signing. 24 | 25 | //[assembly: AssemblyDelaySign(false)] 26 | //[assembly: AssemblyKeyFile("")] 27 | 28 | -------------------------------------------------------------------------------- /Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using Android.App; 4 | 5 | // Information about this assembly is defined by the following attributes. 6 | // Change them to the values specific to your project. 7 | 8 | [assembly: AssemblyTitle("Mvvmdex.Droid")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("")] 13 | [assembly: AssemblyCopyright("fferegrino")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 18 | // The form "{Major}.{Minor}.*" will automatically update the build and revision, 19 | // and "{Major}.{Minor}.{Build}.*" will update just the revision. 20 | 21 | [assembly: AssemblyVersion("1.0.0")] 22 | 23 | // The following attributes are used to specify the signing key for the assembly, 24 | // if desired. See the Mono documentation for more information about signing. 25 | 26 | //[assembly: AssemblyDelaySign(false)] 27 | //[assembly: AssemblyKeyFile("")] 28 | 29 | -------------------------------------------------------------------------------- /Mvvmdex.Uwp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Mvvmdex.Uwp")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Mvvmdex.Uwp")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Version information for an assembly consists of the following four values: 18 | // 19 | // Major Version 20 | // Minor Version 21 | // Build Number 22 | // Revision 23 | // 24 | // You can specify all the values or you can default the Build and Revision Numbers 25 | // by using the '*' as shown below: 26 | // [assembly: AssemblyVersion("1.0.*")] 27 | [assembly: AssemblyVersion("1.0.0.0")] 28 | [assembly: AssemblyFileVersion("1.0.0.0")] 29 | [assembly: ComVisible(false)] -------------------------------------------------------------------------------- /Views/Converters/ShapeToEmojiConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using Xamarin.Forms; 4 | 5 | namespace Mvvmdex.Views.Converters 6 | { 7 | public class ShapeToEmojiConverter : IValueConverter 8 | { 9 | 10 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 11 | { 12 | var shape = (string)value; 13 | 14 | switch (shape) 15 | { 16 | case "ball": 17 | return "⚫"; 18 | case "squiggle": 19 | return "🐍"; 20 | case "fish": 21 | return "🐟"; 22 | case "arms": 23 | return "👐"; 24 | case "blob": 25 | return "🌀"; 26 | case "upright": 27 | return "🚶"; 28 | case "legs": 29 | return "👟"; 30 | case "quadruped": 31 | return "🐎"; 32 | case "wings": 33 | return "🐦"; 34 | case "tentacles": 35 | return "🐙"; 36 | case "heads": 37 | return "👥"; 38 | case "humanoid": 39 | return "💃"; 40 | case "bug-wings": 41 | return "🐝"; 42 | case "armor": 43 | return "🐜"; 44 | default: 45 | return "🚫"; 46 | 47 | } 48 | 49 | } 50 | 51 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 52 | { 53 | throw new NotImplementedException(); 54 | } 55 | } 56 | } 57 | 58 | -------------------------------------------------------------------------------- /Views/MvvmdexPage.xaml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 22 | 23 | 27 | 28 | 31 | -------------------------------------------------------------------------------- /Mvvmdex.Uwp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 | 20 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 24 | 27 | 28 | -------------------------------------------------------------------------------- /iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /iOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDisplayName 6 | Mvvmdex 7 | CFBundleName 8 | Mvvmdex 9 | CFBundleIdentifier 10 | com.thatcsharpguy.mvvmdex 11 | CFBundleShortVersionString 12 | 1.0 13 | CFBundleVersion 14 | 1.0 15 | LSRequiresIPhoneOS 16 | 17 | MinimumOSVersion 18 | 8.0 19 | UIDeviceFamily 20 | 21 | 1 22 | 2 23 | 24 | UILaunchStoryboardName 25 | LaunchScreen 26 | UIRequiredDeviceCapabilities 27 | 28 | armv7 29 | 30 | UISupportedInterfaceOrientations 31 | 32 | UIInterfaceOrientationPortrait 33 | UIInterfaceOrientationLandscapeLeft 34 | UIInterfaceOrientationLandscapeRight 35 | 36 | UISupportedInterfaceOrientations~ipad 37 | 38 | UIInterfaceOrientationPortrait 39 | UIInterfaceOrientationPortraitUpsideDown 40 | UIInterfaceOrientationLandscapeLeft 41 | UIInterfaceOrientationLandscapeRight 42 | 43 | XSAppIconAssets 44 | Assets.xcassets/AppIcons.appiconset 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /Models/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Mvvmdex.Uwp/Package.appxmanifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | 15 | 16 | 17 | Mvvmdex.Uwp 18 | fferegrino 19 | Assets\StoreLogo.png 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 34 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- 1 | Images, layout descriptions, binary blobs and string dictionaries can be included 2 | in your application as resource files. Various Android APIs are designed to 3 | operate on the resource IDs instead of dealing with images, strings or binary blobs 4 | directly. 5 | 6 | For example, a sample Android app that contains a user interface layout (main.axml), 7 | an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png) 8 | would keep its resources in the "Resources" directory of the application: 9 | 10 | Resources/ 11 | drawable/ 12 | icon.png 13 | 14 | layout/ 15 | main.axml 16 | 17 | values/ 18 | strings.xml 19 | 20 | In order to get the build system to recognize Android resources, set the build action to 21 | "AndroidResource". The native Android APIs do not operate directly with filenames, but 22 | instead operate on resource IDs. When you compile an Android application that uses resources, 23 | the build system will package the resources for distribution and generate a class called "R" 24 | (this is an Android convention) that contains the tokens for each one of the resources 25 | included. For example, for the above Resources layout, this is what the R class would expose: 26 | 27 | public class R { 28 | public class drawable { 29 | public const int icon = 0x123; 30 | } 31 | 32 | public class layout { 33 | public const int main = 0x456; 34 | } 35 | 36 | public class strings { 37 | public const int first_string = 0xabc; 38 | public const int second_string = 0xbcd; 39 | } 40 | } 41 | 42 | You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main 43 | to reference the layout/main.axml file, or R.strings.first_string to reference the first 44 | string in the dictionary file values/strings.xml. 45 | -------------------------------------------------------------------------------- /ViewModels/Mvvmdex.ViewModels.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | {A29BD546-D168-4AC9-8354-D2841C070044} 7 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | Library 9 | Mvvmdex.ViewModels 10 | Mvvmdex.ViewModels 11 | v4.5 12 | Profile111 13 | 14 | 15 | true 16 | full 17 | false 18 | bin\Debug 19 | DEBUG; 20 | prompt 21 | 4 22 | false 23 | false 24 | 25 | 26 | true 27 | bin\Release 28 | prompt 29 | 4 30 | false 31 | false 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | {C9210475-1A05-47E9-9A47-0B5BD96C6841} 41 | Mvvmdex.Models 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /ViewModels/PokemonSearchViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.ComponentModel; 3 | using System.Runtime.CompilerServices; 4 | using System.Windows.Input; 5 | using Mvvmdex.Models; 6 | 7 | namespace Mvvmdex.ViewModels 8 | { 9 | public class PokemonSearchViewModel : INotifyPropertyChanged 10 | { 11 | 12 | public event PropertyChangedEventHandler PropertyChanged; 13 | 14 | public void RaiseOnPropertyChange([CallerMemberName] string propertyName = null) 15 | { 16 | if (PropertyChanged != null) 17 | { 18 | PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); 19 | } 20 | } 21 | 22 | private MvvmdexClient _client; 23 | 24 | public PokemonSearchViewModel() 25 | { 26 | _client = new MvvmdexClient(); 27 | } 28 | 29 | private string _pokemonName; 30 | 31 | public string PokemonName 32 | { 33 | get { return _pokemonName; } 34 | set { _pokemonName = value; RaiseOnPropertyChange(); } 35 | } 36 | 37 | private string _description; 38 | 39 | public string Description 40 | { 41 | get { return _description; } 42 | set{ _description = value; RaiseOnPropertyChange(); } 43 | } 44 | 45 | public string SearchTerms { get; set; } 46 | 47 | private string _shape; 48 | 49 | public string Shape 50 | { 51 | get { return _shape; } 52 | set { _shape = value; RaiseOnPropertyChange(); } 53 | } 54 | 55 | private bool _hasCoincidence; 56 | 57 | public bool HasCoincidence 58 | { 59 | get { return _hasCoincidence; } 60 | set { _hasCoincidence = value; RaiseOnPropertyChange(); } 61 | } 62 | 63 | private ICommand _buscaPokemonCommand; 64 | public ICommand BuscaPokemonCommand 65 | { 66 | get 67 | { 68 | if (_buscaPokemonCommand == null) 69 | { 70 | Action buscaPokemonAction = async () => 71 | { 72 | var pokemon = await _client.SearchForPokemon(SearchTerms.ToLower()); 73 | 74 | HasCoincidence = pokemon != null; 75 | if (HasCoincidence) 76 | { 77 | Description = pokemon.Description; 78 | PokemonName = String.Format("{0:D3} {1}", pokemon.Id, pokemon.Name); 79 | Shape = pokemon.Shape; 80 | } 81 | }; 82 | _buscaPokemonCommand = new BuscaPokemonCommand(buscaPokemonAction); 83 | } 84 | return _buscaPokemonCommand; 85 | } 86 | } 87 | } 88 | } 89 | 90 | -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images": [ 3 | { 4 | "idiom": "iphone", 5 | "size": "29x29", 6 | "scale": "1x" 7 | }, 8 | { 9 | "idiom": "iphone", 10 | "size": "29x29", 11 | "scale": "2x" 12 | }, 13 | { 14 | "idiom": "iphone", 15 | "size": "29x29", 16 | "scale": "3x" 17 | }, 18 | { 19 | "idiom": "iphone", 20 | "size": "40x40", 21 | "scale": "2x" 22 | }, 23 | { 24 | "idiom": "iphone", 25 | "size": "40x40", 26 | "scale": "3x" 27 | }, 28 | { 29 | "idiom": "iphone", 30 | "size": "57x57", 31 | "scale": "1x" 32 | }, 33 | { 34 | "idiom": "iphone", 35 | "size": "57x57", 36 | "scale": "2x" 37 | }, 38 | { 39 | "idiom": "iphone", 40 | "size": "60x60", 41 | "scale": "2x" 42 | }, 43 | { 44 | "idiom": "iphone", 45 | "size": "60x60", 46 | "scale": "3x" 47 | }, 48 | { 49 | "idiom": "ipad", 50 | "size": "29x29", 51 | "scale": "1x" 52 | }, 53 | { 54 | "idiom": "ipad", 55 | "size": "29x29", 56 | "scale": "2x" 57 | }, 58 | { 59 | "idiom": "ipad", 60 | "size": "40x40", 61 | "scale": "1x" 62 | }, 63 | { 64 | "idiom": "ipad", 65 | "size": "40x40", 66 | "scale": "2x" 67 | }, 68 | { 69 | "idiom": "ipad", 70 | "size": "50x50", 71 | "scale": "1x" 72 | }, 73 | { 74 | "idiom": "ipad", 75 | "size": "50x50", 76 | "scale": "2x" 77 | }, 78 | { 79 | "idiom": "ipad", 80 | "size": "72x72", 81 | "scale": "1x" 82 | }, 83 | { 84 | "idiom": "ipad", 85 | "size": "72x72", 86 | "scale": "2x" 87 | }, 88 | { 89 | "idiom": "ipad", 90 | "size": "76x76", 91 | "scale": "1x" 92 | }, 93 | { 94 | "idiom": "ipad", 95 | "size": "76x76", 96 | "scale": "2x" 97 | }, 98 | { 99 | "size": "24x24", 100 | "idiom": "watch", 101 | "scale": "2x", 102 | "role": "notificationCenter", 103 | "subtype": "38mm" 104 | }, 105 | { 106 | "size": "27.5x27.5", 107 | "idiom": "watch", 108 | "scale": "2x", 109 | "role": "notificationCenter", 110 | "subtype": "42mm" 111 | }, 112 | { 113 | "size": "29x29", 114 | "idiom": "watch", 115 | "role": "companionSettings", 116 | "scale": "2x" 117 | }, 118 | { 119 | "size": "29x29", 120 | "idiom": "watch", 121 | "role": "companionSettings", 122 | "scale": "3x" 123 | }, 124 | { 125 | "size": "40x40", 126 | "idiom": "watch", 127 | "scale": "2x", 128 | "role": "appLauncher", 129 | "subtype": "38mm" 130 | }, 131 | { 132 | "size": "44x44", 133 | "idiom": "watch", 134 | "scale": "2x", 135 | "role": "longLook", 136 | "subtype": "42mm" 137 | }, 138 | { 139 | "size": "86x86", 140 | "idiom": "watch", 141 | "scale": "2x", 142 | "role": "quickLook", 143 | "subtype": "38mm" 144 | }, 145 | { 146 | "size": "98x98", 147 | "idiom": "watch", 148 | "scale": "2x", 149 | "role": "quickLook", 150 | "subtype": "42mm" 151 | } 152 | ], 153 | "info": { 154 | "version": 1, 155 | "author": "xcode" 156 | } 157 | } -------------------------------------------------------------------------------- /Models/Mvvmdex.Models.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | {C9210475-1A05-47E9-9A47-0B5BD96C6841} 7 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | Library 9 | Mvvmdex.Models 10 | Mvvmdex.Models 11 | v4.5 12 | Profile111 13 | 14 | 15 | true 16 | full 17 | false 18 | bin\Debug 19 | DEBUG; 20 | prompt 21 | 4 22 | false 23 | false 24 | 25 | 26 | true 27 | bin\Release 28 | prompt 29 | 4 30 | false 31 | false 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | ..\packages\Microsoft.Bcl.Async.1.0.168\lib\portable-net45+win8+wpa81\Microsoft.Threading.Tasks.dll 41 | 42 | 43 | ..\packages\Microsoft.Bcl.Async.1.0.168\lib\portable-net45+win8+wpa81\Microsoft.Threading.Tasks.Extensions.dll 44 | 45 | 46 | ..\packages\PCLStorage.1.0.2\lib\portable-net45+wp8+wpa81+win8+monoandroid+monotouch+Xamarin.iOS+Xamarin.Mac\PCLStorage.dll 47 | 48 | 49 | ..\packages\PCLStorage.1.0.2\lib\portable-net45+wp8+wpa81+win8+monoandroid+monotouch+Xamarin.iOS+Xamarin.Mac\PCLStorage.Abstractions.dll 50 | 51 | 52 | ..\packages\Newtonsoft.Json.8.0.3\lib\portable-net45+wp80+win8+wpa81+dnxcore50\Newtonsoft.Json.dll 53 | 54 | 55 | ..\packages\Microsoft.Net.Http.2.2.29\lib\portable-net45+win8+wpa81\System.Net.Http.Primitives.dll 56 | 57 | 58 | ..\packages\Microsoft.Net.Http.2.2.29\lib\portable-net45+win8+wpa81\System.Net.Http.Extensions.dll 59 | 60 | 61 | ..\packages\Flurl.1.1.2\lib\portable-net40+sl50+win+wpa81+wp80+MonoAndroid10+MonoTouch10\Flurl.dll 62 | 63 | 64 | ..\packages\Flurl.Http.0.9.0\lib\portable-net45+sl50+win+wpa81+wp80\Flurl.Http.dll 65 | 66 | 67 | ..\packages\Jirapi.1.5.0.38\lib\portable45-net45+win8+wpa81\Jirapi.dll 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /Mvvmdex.Uwp/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Runtime.InteropServices.WindowsRuntime; 6 | using Windows.ApplicationModel; 7 | using Windows.ApplicationModel.Activation; 8 | using Windows.Foundation; 9 | using Windows.Foundation.Collections; 10 | using Windows.UI.Xaml; 11 | using Windows.UI.Xaml.Controls; 12 | using Windows.UI.Xaml.Controls.Primitives; 13 | using Windows.UI.Xaml.Data; 14 | using Windows.UI.Xaml.Input; 15 | using Windows.UI.Xaml.Media; 16 | using Windows.UI.Xaml.Navigation; 17 | 18 | namespace Mvvmdex.Uwp 19 | { 20 | /// 21 | /// Provides application-specific behavior to supplement the default Application class. 22 | /// 23 | sealed partial class App : Application 24 | { 25 | /// 26 | /// Initializes the singleton application object. This is the first line of authored code 27 | /// executed, and as such is the logical equivalent of main() or WinMain(). 28 | /// 29 | public App() 30 | { 31 | Microsoft.ApplicationInsights.WindowsAppInitializer.InitializeAsync( 32 | Microsoft.ApplicationInsights.WindowsCollectors.Metadata | 33 | Microsoft.ApplicationInsights.WindowsCollectors.Session); 34 | this.InitializeComponent(); 35 | this.Suspending += OnSuspending; 36 | } 37 | 38 | /// 39 | /// Invoked when the application is launched normally by the end user. Other entry points 40 | /// will be used such as when the application is launched to open a specific file. 41 | /// 42 | /// Details about the launch request and process. 43 | protected override void OnLaunched(LaunchActivatedEventArgs e) 44 | { 45 | 46 | Frame rootFrame = Window.Current.Content as Frame; 47 | 48 | // Do not repeat app initialization when the Window already has content, 49 | // just ensure that the window is active 50 | if (rootFrame == null) 51 | { 52 | // Create a Frame to act as the navigation context and navigate to the first page 53 | rootFrame = new Frame(); 54 | 55 | rootFrame.NavigationFailed += OnNavigationFailed; 56 | 57 | Xamarin.Forms.Forms.Init(e); // Added support for Forms 58 | 59 | if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) 60 | { 61 | //TODO: Load state from previously suspended application 62 | } 63 | 64 | // Place the frame in the current Window 65 | Window.Current.Content = rootFrame; 66 | } 67 | 68 | if (rootFrame.Content == null) 69 | { 70 | // When the navigation stack isn't restored navigate to the first page, 71 | // configuring the new page by passing required information as a navigation 72 | // parameter 73 | rootFrame.Navigate(typeof(MainPage), e.Arguments); 74 | } 75 | // Ensure the current window is active 76 | Window.Current.Activate(); 77 | } 78 | 79 | /// 80 | /// Invoked when Navigation to a certain page fails 81 | /// 82 | /// The Frame which failed navigation 83 | /// Details about the navigation failure 84 | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) 85 | { 86 | throw new Exception("Failed to load Page " + e.SourcePageType.FullName); 87 | } 88 | 89 | /// 90 | /// Invoked when application execution is being suspended. Application state is saved 91 | /// without knowing whether the application will be terminated or resumed with the contents 92 | /// of memory still intact. 93 | /// 94 | /// The source of the suspend request. 95 | /// Details about the suspend request. 96 | private void OnSuspending(object sender, SuspendingEventArgs e) 97 | { 98 | var deferral = e.SuspendingOperation.GetDeferral(); 99 | //TODO: Save application state and stop any background activity 100 | deferral.Complete(); 101 | } 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /Views/Mvvmdex.Views.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | {9CA4554B-0D0E-4315-B959-E758CA465626} 7 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | Library 9 | Mvvmdex.Views 10 | Mvvmdex.Views 11 | v4.5 12 | Profile111 13 | 14 | 15 | 16 | 17 | true 18 | full 19 | false 20 | bin\Debug 21 | DEBUG; 22 | prompt 23 | 4 24 | false 25 | 26 | 27 | true 28 | bin\Release 29 | prompt 30 | 4 31 | false 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | App.xaml 40 | 41 | 42 | MvvmdexPage.xaml 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | ..\packages\Xamarin.Forms.2.3.0.49\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Core.dll 51 | True 52 | 53 | 54 | ..\packages\Xamarin.Forms.2.3.0.49\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Platform.dll 55 | True 56 | 57 | 58 | ..\packages\Xamarin.Forms.2.3.0.49\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Xaml.dll 59 | True 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | {A29BD546-D168-4AC9-8354-D2841C070044} 68 | Mvvmdex.ViewModels 69 | False 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | bld/ 21 | [Bb]in/ 22 | [Oo]bj/ 23 | [Ll]og/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | # Uncomment if you have tasks that create the project's static files in wwwroot 28 | #wwwroot/ 29 | 30 | # MSTest test Results 31 | [Tt]est[Rr]esult*/ 32 | [Bb]uild[Ll]og.* 33 | 34 | # NUNIT 35 | *.VisualState.xml 36 | TestResult.xml 37 | 38 | # Build Results of an ATL Project 39 | [Dd]ebugPS/ 40 | [Rr]eleasePS/ 41 | dlldata.c 42 | 43 | # DNX 44 | project.lock.json 45 | artifacts/ 46 | 47 | *_i.c 48 | *_p.c 49 | *_i.h 50 | *.ilk 51 | *.meta 52 | *.obj 53 | *.pch 54 | *.pdb 55 | *.pgc 56 | *.pgd 57 | *.rsp 58 | *.sbr 59 | *.tlb 60 | *.tli 61 | *.tlh 62 | *.tmp 63 | *.tmp_proj 64 | *.log 65 | *.vspscc 66 | *.vssscc 67 | .builds 68 | *.pidb 69 | *.svclog 70 | *.scc 71 | 72 | # Chutzpah Test files 73 | _Chutzpah* 74 | 75 | # Visual C++ cache files 76 | ipch/ 77 | *.aps 78 | *.ncb 79 | *.opendb 80 | *.opensdf 81 | *.sdf 82 | *.cachefile 83 | *.VC.db 84 | *.VC.VC.opendb 85 | 86 | # Visual Studio profiler 87 | *.psess 88 | *.vsp 89 | *.vspx 90 | *.sap 91 | 92 | # TFS 2012 Local Workspace 93 | $tf/ 94 | 95 | # Guidance Automation Toolkit 96 | *.gpState 97 | 98 | # ReSharper is a .NET coding add-in 99 | _ReSharper*/ 100 | *.[Rr]e[Ss]harper 101 | *.DotSettings.user 102 | 103 | # JustCode is a .NET coding add-in 104 | .JustCode 105 | 106 | # TeamCity is a build add-in 107 | _TeamCity* 108 | 109 | # DotCover is a Code Coverage Tool 110 | *.dotCover 111 | 112 | # NCrunch 113 | _NCrunch_* 114 | .*crunch*.local.xml 115 | nCrunchTemp_* 116 | 117 | # MightyMoose 118 | *.mm.* 119 | AutoTest.Net/ 120 | 121 | # Web workbench (sass) 122 | .sass-cache/ 123 | 124 | # Installshield output folder 125 | [Ee]xpress/ 126 | 127 | # DocProject is a documentation generator add-in 128 | DocProject/buildhelp/ 129 | DocProject/Help/*.HxT 130 | DocProject/Help/*.HxC 131 | DocProject/Help/*.hhc 132 | DocProject/Help/*.hhk 133 | DocProject/Help/*.hhp 134 | DocProject/Help/Html2 135 | DocProject/Help/html 136 | 137 | # Click-Once directory 138 | publish/ 139 | 140 | # Publish Web Output 141 | *.[Pp]ublish.xml 142 | *.azurePubxml 143 | # TODO: Comment the next line if you want to checkin your web deploy settings 144 | # but database connection strings (with potential passwords) will be unencrypted 145 | *.pubxml 146 | *.publishproj 147 | 148 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 149 | # checkin your Azure Web App publish settings, but sensitive information contained 150 | # in these scripts will be unencrypted 151 | PublishScripts/ 152 | 153 | # NuGet Packages 154 | *.nupkg 155 | # The packages folder can be ignored because of Package Restore 156 | **/packages/* 157 | # except build/, which is used as an MSBuild target. 158 | !**/packages/build/ 159 | # Uncomment if necessary however generally it will be regenerated when needed 160 | #!**/packages/repositories.config 161 | # NuGet v3's project.json files produces more ignoreable files 162 | *.nuget.props 163 | *.nuget.targets 164 | 165 | # Microsoft Azure Build Output 166 | csx/ 167 | *.build.csdef 168 | 169 | # Microsoft Azure Emulator 170 | ecf/ 171 | rcf/ 172 | 173 | # Windows Store app package directories and files 174 | AppPackages/ 175 | BundleArtifacts/ 176 | Package.StoreAssociation.xml 177 | _pkginfo.txt 178 | 179 | # Visual Studio cache files 180 | # files ending in .cache can be ignored 181 | *.[Cc]ache 182 | # but keep track of directories ending in .cache 183 | !*.[Cc]ache/ 184 | 185 | # Others 186 | ClientBin/ 187 | ~$* 188 | *~ 189 | *.dbmdl 190 | *.dbproj.schemaview 191 | *.pfx 192 | *.publishsettings 193 | node_modules/ 194 | orleans.codegen.cs 195 | 196 | # Since there are multiple workflows, uncomment next line to ignore bower_components 197 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 198 | #bower_components/ 199 | 200 | # RIA/Silverlight projects 201 | Generated_Code/ 202 | 203 | # Backup & report files from converting an old project file 204 | # to a newer Visual Studio version. Backup files are not needed, 205 | # because we have git ;-) 206 | _UpgradeReport_Files/ 207 | Backup*/ 208 | UpgradeLog*.XML 209 | UpgradeLog*.htm 210 | 211 | # SQL Server files 212 | *.mdf 213 | *.ldf 214 | 215 | # Business Intelligence projects 216 | *.rdl.data 217 | *.bim.layout 218 | *.bim_*.settings 219 | 220 | # Microsoft Fakes 221 | FakesAssemblies/ 222 | 223 | # GhostDoc plugin setting file 224 | *.GhostDoc.xml 225 | 226 | # Node.js Tools for Visual Studio 227 | .ntvs_analysis.dat 228 | 229 | # Visual Studio 6 build log 230 | *.plg 231 | 232 | # Visual Studio 6 workspace options file 233 | *.opt 234 | 235 | # Visual Studio LightSwitch build output 236 | **/*.HTMLClient/GeneratedArtifacts 237 | **/*.DesktopClient/GeneratedArtifacts 238 | **/*.DesktopClient/ModelManifest.xml 239 | **/*.Server/GeneratedArtifacts 240 | **/*.Server/ModelManifest.xml 241 | _Pvt_Extensions 242 | 243 | # Paket dependency manager 244 | .paket/paket.exe 245 | paket-files/ 246 | 247 | # FAKE - F# Make 248 | .fake/ 249 | 250 | # JetBrains Rider 251 | .idea/ 252 | *.sln.iml 253 | -------------------------------------------------------------------------------- /Mvvmdex.Uwp/Mvvmdex.Uwp.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | x86 7 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724} 8 | AppContainerExe 9 | Properties 10 | Mvvmdex.Uwp 11 | Mvvmdex.Uwp 12 | en-US 13 | UAP 14 | 10.0.10586.0 15 | 10.0.10240.0 16 | 14 17 | 512 18 | {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 19 | Mvvmdex.Uwp_TemporaryKey.pfx 20 | 21 | 22 | true 23 | bin\x86\Debug\ 24 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 25 | ;2008 26 | full 27 | x86 28 | false 29 | prompt 30 | true 31 | 32 | 33 | bin\x86\Release\ 34 | TRACE;NETFX_CORE;WINDOWS_UWP 35 | true 36 | ;2008 37 | pdbonly 38 | x86 39 | false 40 | prompt 41 | true 42 | true 43 | 44 | 45 | true 46 | bin\ARM\Debug\ 47 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 48 | ;2008 49 | full 50 | ARM 51 | false 52 | prompt 53 | true 54 | 55 | 56 | bin\ARM\Release\ 57 | TRACE;NETFX_CORE;WINDOWS_UWP 58 | true 59 | ;2008 60 | pdbonly 61 | ARM 62 | false 63 | prompt 64 | true 65 | true 66 | 67 | 68 | true 69 | bin\x64\Debug\ 70 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP 71 | ;2008 72 | full 73 | x64 74 | false 75 | prompt 76 | true 77 | 78 | 79 | bin\x64\Release\ 80 | TRACE;NETFX_CORE;WINDOWS_UWP 81 | true 82 | ;2008 83 | pdbonly 84 | x64 85 | false 86 | prompt 87 | true 88 | true 89 | 90 | 91 | 92 | 93 | PreserveNewest 94 | 95 | 96 | 97 | 98 | 99 | App.xaml 100 | 101 | 102 | MainPage.xaml 103 | 104 | 105 | 106 | 107 | 108 | Designer 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | MSBuild:Compile 125 | Designer 126 | 127 | 128 | MSBuild:Compile 129 | Designer 130 | 131 | 132 | 133 | 134 | {a29bd546-d168-4ac9-8354-d2841c070044} 135 | Mvvmdex.ViewModels 136 | 137 | 138 | {9ca4554b-0d0e-4315-b959-e758ca465626} 139 | Mvvmdex.Views 140 | 141 | 142 | 143 | 14.0 144 | 145 | 146 | 153 | -------------------------------------------------------------------------------- /iOS/Mvvmdex.iOS.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | iPhoneSimulator 6 | {3618CFB8-2392-429D-A207-99A29C98EA72} 7 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | Exe 9 | Mvvmdex.iOS 10 | MvvmdexiOS 11 | Resources 12 | 13 | 14 | 15 | 16 | true 17 | full 18 | false 19 | bin\iPhoneSimulator\Debug 20 | DEBUG;ENABLE_TEST_CLOUD; 21 | prompt 22 | 4 23 | false 24 | iPhone Developer 25 | true 26 | true 27 | true 28 | true 29 | true 30 | None 31 | i386 32 | HttpClientHandler 33 | Default 34 | x86 35 | 36 | 37 | true 38 | bin\iPhone\Release 39 | prompt 40 | 4 41 | false 42 | iPhone Developer 43 | true 44 | true 45 | true 46 | Entitlements.plist 47 | SdkOnly 48 | ARMv7, ARM64 49 | HttpClientHandler 50 | Default 51 | x86 52 | 53 | 54 | true 55 | bin\iPhoneSimulator\Release 56 | prompt 57 | 4 58 | false 59 | iPhone Developer 60 | true 61 | true 62 | None 63 | i386 64 | HttpClientHandler 65 | Default 66 | x86 67 | 68 | 69 | true 70 | full 71 | false 72 | bin\iPhone\Debug 73 | DEBUG;ENABLE_TEST_CLOUD; 74 | prompt 75 | 4 76 | false 77 | iPhone Developer 78 | true 79 | true 80 | true 81 | true 82 | true 83 | true 84 | true 85 | Entitlements.plist 86 | SdkOnly 87 | ARMv7, ARM64 88 | HttpClientHandler 89 | Default 90 | x86 91 | 92 | 93 | 94 | 95 | 96 | 97 | ..\packages\Xamarin.Forms.2.3.0.49\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll 98 | True 99 | 100 | 101 | ..\packages\Xamarin.Forms.2.3.0.49\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll 102 | True 103 | 104 | 105 | ..\packages\Xamarin.Forms.2.3.0.49\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll 106 | True 107 | 108 | 109 | ..\packages\Xamarin.Forms.2.3.0.49\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll 110 | True 111 | 112 | 113 | 114 | 115 | 116 | {9CA4554B-0D0E-4315-B959-E758CA465626} 117 | Mvvmdex.Views 118 | 119 | 120 | {A29BD546-D168-4AC9-8354-D2841C070044} 121 | Mvvmdex.ViewModels 122 | 123 | 124 | 125 | 126 | false 127 | 128 | 129 | false 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 152 | 153 | 154 | 155 | -------------------------------------------------------------------------------- /Droid/Mvvmdex.Droid.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | {70557D69-0E28-4A41-A388-58E6DDDD7867} 7 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | Library 9 | Mvvmdex.Droid 10 | Mvvmdex.Droid 11 | v6.0 12 | True 13 | Resources\Resource.designer.cs 14 | Resource 15 | Properties\AndroidManifest.xml 16 | Resources 17 | Assets 18 | true 19 | 20 | 21 | 22 | 23 | true 24 | full 25 | false 26 | bin\Debug 27 | DEBUG; 28 | prompt 29 | 4 30 | false 31 | None 32 | 33 | 34 | true 35 | bin\Release 36 | prompt 37 | 4 38 | false 39 | false 40 | 41 | 42 | 43 | ..\packages\Xamarin.Forms.2.3.0.49\lib\MonoAndroid10\FormsViewGroup.dll 44 | True 45 | 46 | 47 | 48 | 49 | 50 | 51 | ..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Animated.Vector.Drawable.dll 52 | True 53 | 54 | 55 | ..\packages\Xamarin.Android.Support.Design.23.3.0\lib\MonoAndroid43\Xamarin.Android.Support.Design.dll 56 | True 57 | 58 | 59 | ..\packages\Xamarin.Android.Support.v4.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll 60 | True 61 | 62 | 63 | ..\packages\Xamarin.Android.Support.v7.AppCompat.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.AppCompat.dll 64 | True 65 | 66 | 67 | ..\packages\Xamarin.Android.Support.v7.CardView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.CardView.dll 68 | True 69 | 70 | 71 | ..\packages\Xamarin.Android.Support.v7.MediaRouter.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.MediaRouter.dll 72 | True 73 | 74 | 75 | ..\packages\Xamarin.Android.Support.v7.RecyclerView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.RecyclerView.dll 76 | True 77 | 78 | 79 | ..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Vector.Drawable.dll 80 | True 81 | 82 | 83 | ..\packages\Xamarin.Forms.2.3.0.49\lib\MonoAndroid10\Xamarin.Forms.Core.dll 84 | True 85 | 86 | 87 | ..\packages\Xamarin.Forms.2.3.0.49\lib\MonoAndroid10\Xamarin.Forms.Platform.dll 88 | True 89 | 90 | 91 | ..\packages\Xamarin.Forms.2.3.0.49\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll 92 | True 93 | 94 | 95 | ..\packages\Xamarin.Forms.2.3.0.49\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll 96 | True 97 | 98 | 99 | 100 | 101 | {9CA4554B-0D0E-4315-B959-E758CA465626} 102 | Mvvmdex.Views 103 | 104 | 105 | {A29BD546-D168-4AC9-8354-D2841C070044} 106 | Mvvmdex.ViewModels 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 135 | 136 | 137 | 138 | 139 | 140 | -------------------------------------------------------------------------------- /Mvvmdex.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 12.00 2 | # Visual Studio 14 3 | VisualStudioVersion = 14.0.24720.0 4 | MinimumVisualStudioVersion = 10.0.40219.1 5 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mvvmdex.iOS", "iOS\Mvvmdex.iOS.csproj", "{3618CFB8-2392-429D-A207-99A29C98EA72}" 6 | EndProject 7 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mvvmdex.Droid", "Droid\Mvvmdex.Droid.csproj", "{70557D69-0E28-4A41-A388-58E6DDDD7867}" 8 | EndProject 9 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mvvmdex.Models", "Models\Mvvmdex.Models.csproj", "{C9210475-1A05-47E9-9A47-0B5BD96C6841}" 10 | EndProject 11 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mvvmdex.ViewModels", "ViewModels\Mvvmdex.ViewModels.csproj", "{A29BD546-D168-4AC9-8354-D2841C070044}" 12 | EndProject 13 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mvvmdex.Views", "Views\Mvvmdex.Views.csproj", "{9CA4554B-0D0E-4315-B959-E758CA465626}" 14 | EndProject 15 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mvvmdex.Uwp", "Mvvmdex.Uwp\Mvvmdex.Uwp.csproj", "{7266F3E3-0FF9-4693-ADD9-BA19961C1724}" 16 | EndProject 17 | Global 18 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 19 | Debug|Any CPU = Debug|Any CPU 20 | Debug|ARM = Debug|ARM 21 | Debug|iPhone = Debug|iPhone 22 | Debug|iPhoneSimulator = Debug|iPhoneSimulator 23 | Debug|x64 = Debug|x64 24 | Debug|x86 = Debug|x86 25 | Release|Any CPU = Release|Any CPU 26 | Release|ARM = Release|ARM 27 | Release|iPhone = Release|iPhone 28 | Release|iPhoneSimulator = Release|iPhoneSimulator 29 | Release|x64 = Release|x64 30 | Release|x86 = Release|x86 31 | EndGlobalSection 32 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 33 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator 34 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator 35 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Debug|ARM.ActiveCfg = Debug|iPhone 36 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Debug|iPhone.ActiveCfg = Debug|iPhone 37 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Debug|iPhone.Build.0 = Debug|iPhone 38 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator 39 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator 40 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Debug|x64.ActiveCfg = Debug|iPhone 41 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Debug|x86.ActiveCfg = Debug|iPhone 42 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Release|Any CPU.ActiveCfg = Debug|iPhoneSimulator 43 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Release|Any CPU.Build.0 = Debug|iPhoneSimulator 44 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Release|ARM.ActiveCfg = Release|iPhoneSimulator 45 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Release|iPhone.ActiveCfg = Release|iPhone 46 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Release|iPhone.Build.0 = Release|iPhone 47 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator 48 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator 49 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Release|x64.ActiveCfg = Release|iPhoneSimulator 50 | {3618CFB8-2392-429D-A207-99A29C98EA72}.Release|x86.ActiveCfg = Release|iPhoneSimulator 51 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 52 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|Any CPU.Build.0 = Debug|Any CPU 53 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 54 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|ARM.ActiveCfg = Debug|Any CPU 55 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|ARM.Build.0 = Debug|Any CPU 56 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|ARM.Deploy.0 = Debug|Any CPU 57 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|iPhone.ActiveCfg = Debug|Any CPU 58 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|iPhone.Build.0 = Debug|Any CPU 59 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 60 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 61 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|x64.ActiveCfg = Debug|Any CPU 62 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|x64.Build.0 = Debug|Any CPU 63 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|x64.Deploy.0 = Debug|Any CPU 64 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|x86.ActiveCfg = Debug|Any CPU 65 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|x86.Build.0 = Debug|Any CPU 66 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Debug|x86.Deploy.0 = Debug|Any CPU 67 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|Any CPU.ActiveCfg = Release|Any CPU 68 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|Any CPU.Build.0 = Release|Any CPU 69 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|ARM.ActiveCfg = Release|Any CPU 70 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|ARM.Build.0 = Release|Any CPU 71 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|ARM.Deploy.0 = Release|Any CPU 72 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|iPhone.ActiveCfg = Release|Any CPU 73 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|iPhone.Build.0 = Release|Any CPU 74 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 75 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 76 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|x64.ActiveCfg = Release|Any CPU 77 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|x64.Build.0 = Release|Any CPU 78 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|x64.Deploy.0 = Release|Any CPU 79 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|x86.ActiveCfg = Release|Any CPU 80 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|x86.Build.0 = Release|Any CPU 81 | {70557D69-0E28-4A41-A388-58E6DDDD7867}.Release|x86.Deploy.0 = Release|Any CPU 82 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 83 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Debug|Any CPU.Build.0 = Debug|Any CPU 84 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Debug|ARM.ActiveCfg = Debug|Any CPU 85 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Debug|ARM.Build.0 = Debug|Any CPU 86 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Debug|iPhone.ActiveCfg = Debug|Any CPU 87 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Debug|iPhone.Build.0 = Debug|Any CPU 88 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 89 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 90 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Debug|x64.ActiveCfg = Debug|Any CPU 91 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Debug|x64.Build.0 = Debug|Any CPU 92 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Debug|x86.ActiveCfg = Debug|Any CPU 93 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Debug|x86.Build.0 = Debug|Any CPU 94 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Release|Any CPU.ActiveCfg = Release|Any CPU 95 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Release|Any CPU.Build.0 = Release|Any CPU 96 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Release|ARM.ActiveCfg = Release|Any CPU 97 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Release|ARM.Build.0 = Release|Any CPU 98 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Release|iPhone.ActiveCfg = Release|Any CPU 99 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Release|iPhone.Build.0 = Release|Any CPU 100 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 101 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 102 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Release|x64.ActiveCfg = Release|Any CPU 103 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Release|x64.Build.0 = Release|Any CPU 104 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Release|x86.ActiveCfg = Release|Any CPU 105 | {C9210475-1A05-47E9-9A47-0B5BD96C6841}.Release|x86.Build.0 = Release|Any CPU 106 | {A29BD546-D168-4AC9-8354-D2841C070044}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 107 | {A29BD546-D168-4AC9-8354-D2841C070044}.Debug|Any CPU.Build.0 = Debug|Any CPU 108 | {A29BD546-D168-4AC9-8354-D2841C070044}.Debug|ARM.ActiveCfg = Debug|Any CPU 109 | {A29BD546-D168-4AC9-8354-D2841C070044}.Debug|ARM.Build.0 = Debug|Any CPU 110 | {A29BD546-D168-4AC9-8354-D2841C070044}.Debug|iPhone.ActiveCfg = Debug|Any CPU 111 | {A29BD546-D168-4AC9-8354-D2841C070044}.Debug|iPhone.Build.0 = Debug|Any CPU 112 | {A29BD546-D168-4AC9-8354-D2841C070044}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 113 | {A29BD546-D168-4AC9-8354-D2841C070044}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 114 | {A29BD546-D168-4AC9-8354-D2841C070044}.Debug|x64.ActiveCfg = Debug|Any CPU 115 | {A29BD546-D168-4AC9-8354-D2841C070044}.Debug|x64.Build.0 = Debug|Any CPU 116 | {A29BD546-D168-4AC9-8354-D2841C070044}.Debug|x86.ActiveCfg = Debug|Any CPU 117 | {A29BD546-D168-4AC9-8354-D2841C070044}.Debug|x86.Build.0 = Debug|Any CPU 118 | {A29BD546-D168-4AC9-8354-D2841C070044}.Release|Any CPU.ActiveCfg = Release|Any CPU 119 | {A29BD546-D168-4AC9-8354-D2841C070044}.Release|Any CPU.Build.0 = Release|Any CPU 120 | {A29BD546-D168-4AC9-8354-D2841C070044}.Release|ARM.ActiveCfg = Release|Any CPU 121 | {A29BD546-D168-4AC9-8354-D2841C070044}.Release|ARM.Build.0 = Release|Any CPU 122 | {A29BD546-D168-4AC9-8354-D2841C070044}.Release|iPhone.ActiveCfg = Release|Any CPU 123 | {A29BD546-D168-4AC9-8354-D2841C070044}.Release|iPhone.Build.0 = Release|Any CPU 124 | {A29BD546-D168-4AC9-8354-D2841C070044}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 125 | {A29BD546-D168-4AC9-8354-D2841C070044}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 126 | {A29BD546-D168-4AC9-8354-D2841C070044}.Release|x64.ActiveCfg = Release|Any CPU 127 | {A29BD546-D168-4AC9-8354-D2841C070044}.Release|x64.Build.0 = Release|Any CPU 128 | {A29BD546-D168-4AC9-8354-D2841C070044}.Release|x86.ActiveCfg = Release|Any CPU 129 | {A29BD546-D168-4AC9-8354-D2841C070044}.Release|x86.Build.0 = Release|Any CPU 130 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 131 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Debug|Any CPU.Build.0 = Debug|Any CPU 132 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Debug|ARM.ActiveCfg = Debug|Any CPU 133 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Debug|ARM.Build.0 = Debug|Any CPU 134 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Debug|iPhone.ActiveCfg = Debug|Any CPU 135 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Debug|iPhone.Build.0 = Debug|Any CPU 136 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 137 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 138 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Debug|x64.ActiveCfg = Debug|Any CPU 139 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Debug|x64.Build.0 = Debug|Any CPU 140 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Debug|x86.ActiveCfg = Debug|Any CPU 141 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Debug|x86.Build.0 = Debug|Any CPU 142 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Release|Any CPU.ActiveCfg = Release|Any CPU 143 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Release|Any CPU.Build.0 = Release|Any CPU 144 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Release|ARM.ActiveCfg = Release|Any CPU 145 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Release|ARM.Build.0 = Release|Any CPU 146 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Release|iPhone.ActiveCfg = Release|Any CPU 147 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Release|iPhone.Build.0 = Release|Any CPU 148 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 149 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 150 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Release|x64.ActiveCfg = Release|Any CPU 151 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Release|x64.Build.0 = Release|Any CPU 152 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Release|x86.ActiveCfg = Release|Any CPU 153 | {9CA4554B-0D0E-4315-B959-E758CA465626}.Release|x86.Build.0 = Release|Any CPU 154 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|Any CPU.ActiveCfg = Debug|x86 155 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|Any CPU.Build.0 = Debug|x86 156 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|Any CPU.Deploy.0 = Debug|x86 157 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|ARM.ActiveCfg = Debug|ARM 158 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|ARM.Build.0 = Debug|ARM 159 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|ARM.Deploy.0 = Debug|ARM 160 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|iPhone.ActiveCfg = Debug|x86 161 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|iPhoneSimulator.ActiveCfg = Debug|x86 162 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|x64.ActiveCfg = Debug|x64 163 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|x64.Build.0 = Debug|x64 164 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|x64.Deploy.0 = Debug|x64 165 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|x86.ActiveCfg = Debug|x86 166 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|x86.Build.0 = Debug|x86 167 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Debug|x86.Deploy.0 = Debug|x86 168 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Release|Any CPU.ActiveCfg = Release|x86 169 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Release|ARM.ActiveCfg = Release|ARM 170 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Release|ARM.Build.0 = Release|ARM 171 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Release|ARM.Deploy.0 = Release|ARM 172 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Release|iPhone.ActiveCfg = Release|x86 173 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Release|iPhoneSimulator.ActiveCfg = Release|x86 174 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Release|x64.ActiveCfg = Release|x64 175 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Release|x64.Build.0 = Release|x64 176 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Release|x64.Deploy.0 = Release|x64 177 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Release|x86.ActiveCfg = Release|x86 178 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Release|x86.Build.0 = Release|x86 179 | {7266F3E3-0FF9-4693-ADD9-BA19961C1724}.Release|x86.Deploy.0 = Release|x86 180 | EndGlobalSection 181 | GlobalSection(SolutionProperties) = preSolution 182 | HideSolutionNode = FALSE 183 | EndGlobalSection 184 | EndGlobal 185 | --------------------------------------------------------------------------------