├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── Common └── SignaturePad.WP7 │ ├── Properties │ └── AssemblyInfo.cs │ ├── SignaturePad.WP7.csproj │ ├── SignaturePad.WP7.sln │ ├── SignaturePad.xaml │ └── SignaturePad.xaml.cs ├── LICENSE ├── MobileCRM.Android ├── Assets │ └── AboutAssets.txt ├── MainActivity.cs ├── MobileCRM.Android.csproj ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Renderers │ ├── BarChartRenderer.cs │ ├── ListTextCellRenderer.cs │ ├── LoginPageRenderer_Android.cs │ ├── MenuCellRenderer.cs │ ├── PieChartRenderer.cs │ └── SignaturePadRenderer.cs ├── Resources │ ├── AboutResources.txt │ ├── Colors.xml │ ├── Resource.designer.cs │ ├── drawable-hdpi │ │ ├── account.png │ │ ├── add.png │ │ ├── catalog_printer.jpg │ │ ├── contact.png │ │ ├── dashboard.png │ │ ├── filter.png │ │ ├── lead.png │ │ ├── menubk.png │ │ ├── productcatalog.png │ │ ├── refresh.png │ │ ├── save.png │ │ ├── settings.png │ │ └── slideout.png │ ├── drawable-mdpi │ │ ├── account.png │ │ ├── add.png │ │ ├── catalog_printer.jpg │ │ ├── contact.png │ │ ├── dashboard.png │ │ ├── filter.png │ │ ├── lead.png │ │ ├── menubk.png │ │ ├── productcatalog.png │ │ ├── refresh.png │ │ ├── save.png │ │ ├── settings.png │ │ └── slideout.png │ ├── drawable-xhdpi │ │ ├── account.png │ │ ├── add.png │ │ ├── catalog_printer.jpg │ │ ├── contact.png │ │ ├── dashboard.png │ │ ├── filter.png │ │ ├── lead.png │ │ ├── menubk.png │ │ ├── productcatalog.png │ │ ├── refresh.png │ │ ├── save.png │ │ ├── settings.png │ │ └── slideout.png │ ├── drawable-xxhdpi │ │ ├── account.png │ │ ├── add.png │ │ ├── catalog_printer.jpg │ │ ├── contact.png │ │ ├── dashboard.png │ │ ├── filter.png │ │ ├── lead.png │ │ ├── menubk.png │ │ ├── productcatalog.png │ │ ├── refresh.png │ │ ├── save.png │ │ ├── settings.png │ │ └── slideout.png │ ├── drawable │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ ├── Iconoriginal.png │ │ ├── account.png │ │ ├── catalog_combo.jpg │ │ ├── catalog_ink.jpg │ │ ├── catalog_paper.jpg │ │ ├── catalog_printer.jpg │ │ ├── catalog_scanner.jpg │ │ ├── contact.png │ │ ├── dashboard.png │ │ ├── lead.png │ │ ├── menubk.png │ │ ├── productcatalog.png │ │ ├── save.png │ │ ├── settings.png │ │ ├── slideout.png │ │ ├── zoom_in.png │ │ └── zoom_out.png │ ├── layout │ │ └── Main.axml │ └── values │ │ ├── Colors.xml │ │ ├── Strings.xml │ │ └── styles_basetheme.xml ├── app.config └── packages.config ├── MobileCRM.CustomControls ├── BarChart.cs ├── Converters │ └── ConvertableConverter.cs ├── ListTextCell.cs ├── MenuCell.cs ├── MobileCRM.CustomControls.csproj ├── PieChart.cs ├── Properties │ └── AssemblyInfo.cs ├── SignaturePad.cs ├── TextCellEx.cs └── packages.config ├── MobileCRM.Services ├── Attributes │ ├── CurrencyAttribute.cs │ └── DisplayAttribute.cs ├── IAuthenticationResponse.cs ├── IAuthenticationService.cs ├── IContactRepository.cs ├── IGeoService.cs ├── IRepository.cs ├── MobileCRM.Services.csproj ├── Models │ ├── Account.cs │ ├── Address.cs │ ├── Contact.cs │ ├── IContact.cs │ ├── ILead.cs │ ├── ILocatable.cs │ ├── IUser.cs │ ├── Lead.cs │ ├── Opportunity.cs │ ├── Proposal.cs │ └── User.cs ├── Properties │ └── AssemblyInfo.cs ├── Repositories │ ├── AccountRepository.cs │ ├── ContactRepository.cs │ ├── InMemoryRepository.cs │ ├── LeadRepository.cs │ ├── OpportunityRepository.cs │ └── UserRepository.cs └── packages.config ├── MobileCRM.Shared ├── App.cs ├── CustomControls │ ├── BarChart.cs │ ├── Converters │ │ └── ConvertableConverter.cs │ ├── ListTextCell.cs │ ├── MenuCell.cs │ ├── PieChart.cs │ └── SignaturePad.cs ├── Helpers │ ├── BarGraphHelper.cs │ ├── Color.cs │ ├── ConvertableConverter.cs │ ├── EditCellFactory.cs │ └── Utils.cs ├── Interfaces │ └── IDataManager.cs ├── MobileCRM.Shared.csproj ├── Models │ ├── Account.cs │ ├── Address.cs │ ├── BaseModel.cs │ ├── CatalogItem.cs │ ├── Contact.cs │ ├── MenuItem.cs │ ├── Order.cs │ └── UserInfo.cs ├── Pages │ ├── Accounts │ │ ├── AccountContactView.xaml │ │ ├── AccountContactView.xaml.cs │ │ ├── AccountDetailsTabView.cs │ │ ├── AccountDetailsView.xaml │ │ ├── AccountDetailsView.xaml.cs │ │ ├── AccountMapView.cs │ │ ├── AccountNotesView.cs │ │ ├── AccountsMapView.cs │ │ ├── AccountsView.xaml │ │ └── AccountsView.xaml.cs │ ├── Base │ │ ├── BaseView.cs │ │ └── TabView.cs │ ├── Catalog │ │ ├── CatalogCarouselView.cs │ │ ├── CatalogView.xaml │ │ └── CatalogView.xaml.cs │ ├── Contacts │ │ ├── ContactDetailsTabView.cs │ │ ├── ContactDetailsView.xaml │ │ ├── ContactDetailsView.xaml.cs │ │ ├── ContactMapView.cs │ │ ├── ContactsMapView.cs │ │ ├── ContactsView.xaml │ │ └── ContactsView.xaml.cs │ ├── Home │ │ ├── DashboardView.xaml │ │ ├── DashboardView.xaml.cs │ │ ├── LoginView.cs │ │ ├── MenuView.cs │ │ ├── RootView.cs │ │ ├── SplashPage.xaml │ │ └── SplashPage.xaml.cs │ ├── Leads │ │ ├── LeadDetailsTabView.cs │ │ ├── LeadDetailsView.cs │ │ ├── LeadsView.xaml │ │ └── LeadsView.xaml.cs │ ├── Orders │ │ ├── AccountHistoryView.xaml │ │ ├── AccountHistoryView.xaml.cs │ │ ├── AccountOrderDetailsView.cs │ │ ├── AccountOrdersView.xaml │ │ ├── AccountOrdersView.xaml.cs │ │ └── NewOrderView.cs │ └── Settings │ │ ├── DataSettingsView.xaml │ │ ├── DataSettingsView.xaml.cs │ │ ├── SettingsTabView.cs │ │ ├── UserSettingsView.xaml │ │ └── UserSettingsView.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ └── Attributes │ │ ├── CurrencyAttribute.cs │ │ └── DisplayAttribute.cs ├── Services │ ├── AuthInfo.cs │ └── AzureService.cs ├── ViewModels │ ├── Accounts │ │ ├── AccountDetailsViewModel.cs │ │ └── AccountsViewModel.cs │ ├── BaseViewModel.cs │ ├── Catalog │ │ └── CatalogViewModel.cs │ ├── Contacts │ │ ├── ContactDetailsViewModel.cs │ │ └── ContactsViewModel.cs │ ├── Home │ │ ├── DashboardViewModel.cs │ │ ├── HomeViewModel.cs │ │ └── LoginViewModel.cs │ ├── Leads │ │ └── LeadsViewModel.cs │ ├── Orders │ │ ├── OrderDetailsViewModel.cs │ │ └── OrdersViewModel.cs │ └── Settings │ │ └── UserViewModel.cs └── packages.config ├── MobileCRM.WindowsPhone ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png ├── LocalizedStrings.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── MobileCRM.WindowsPhone.csproj ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml ├── README_FIRST.txt ├── Renderers │ ├── BarChartRenderer.cs │ ├── LoginPageRenderer_WP.cs │ ├── PieChartRenderer.cs │ └── SignaturePadRenderer.cs ├── Resources │ ├── AppResources.Designer.cs │ ├── AppResources.resx │ └── XMLFile1.xml ├── Toolkit.Content │ ├── ApplicationBar.Add.png │ ├── ApplicationBar.Cancel.png │ ├── ApplicationBar.Check.png │ ├── ApplicationBar.Delete.png │ └── ApplicationBar.Select.png ├── account.png ├── add.png ├── app.config ├── catalog_combo.jpg ├── catalog_ink.jpg ├── catalog_paper.jpg ├── catalog_printer.jpg ├── catalog_scanner.jpg ├── contact.png ├── dashboard.png ├── filter.png ├── lead.png ├── menubk.png ├── packages.config ├── productcatalog.png ├── refresh.png ├── save.png ├── settings.png └── slideout.png ├── MobileCRM.iOS ├── AppDelegate.cs ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── MobileCRM.iOS.csproj ├── Renderers │ ├── BarChartRenderer.cs │ ├── CustomTabletMasterDetailRenderer.cs │ ├── ImmortalizeStoryboard.designer.cs │ ├── ImmortalizeStoryboard.storyboard │ ├── ListTextCellRenderer.cs │ ├── LoginPageRenderer_iOS.cs │ ├── MenuCellRenderer.cs │ ├── PieChartRenderer.cs │ ├── SignaturePadRenderer.cs │ └── StripedListViewRenderer.cs ├── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default-iPad.png │ ├── Default-iPad@2x.png │ ├── Icon-60@2x.png │ ├── Icon-72@2x.png │ ├── Icon-76@2x.png │ ├── Icon-iPad@2x.png │ ├── Icon.png │ ├── Icon@2x.png │ ├── account.png │ ├── account@2x.png │ ├── add.png │ ├── add@2x.png │ ├── catalog_combo.jpg │ ├── catalog_ink.jpg │ ├── catalog_paper.jpg │ ├── catalog_printer.jpg │ ├── catalog_scanner.jpg │ ├── contact.png │ ├── contact@2x.png │ ├── contactcard.png │ ├── contactcard@2x.png │ ├── dashboard.png │ ├── dashboard@2x.png │ ├── icon-114.png │ ├── icon-120.png │ ├── icon-144.png │ ├── icon-152.png │ ├── icon-57.png │ ├── icon-72.png │ ├── icon-76.png │ ├── lead.png │ ├── lead@2x.png │ ├── map.png │ ├── map@2x.png │ ├── menubk.png │ ├── menubk@2x.png │ ├── order.png │ ├── order@2x.png │ ├── orderhistory.png │ ├── orderhistory@2x.png │ ├── productcatalog.png │ ├── productcatalog@2x.png │ ├── refresh.png │ ├── refresh@2x.png │ ├── save.png │ ├── save@2x.png │ ├── settings.png │ ├── settings@2x.png │ ├── slideout.png │ ├── slideout@2x.png │ ├── xamarin-icon-simplified.png │ ├── zoom_in.png │ └── zoom_out.png ├── app.config └── packages.config ├── MobileCRM.sln ├── README.md ├── debug.keystore ├── icon graphics ├── v1 │ ├── Icon@2x.png │ ├── account.png │ ├── account │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── account.png │ │ │ ├── drawable-mdpi │ │ │ └── account.png │ │ │ ├── drawable-xhdpi │ │ │ └── account.png │ │ │ └── drawable-xxhdpi │ │ │ └── account.png │ ├── account@2x.png │ ├── companycard.png │ ├── companycard │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_action_companycard2x.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_action_companycard2x.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_action_companycard2x.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_action_companycard2x.png │ ├── companycard@2x.png │ ├── contact.png │ ├── contact │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── contact.png │ │ │ ├── drawable-mdpi │ │ │ └── contact.png │ │ │ ├── drawable-xhdpi │ │ │ └── contact.png │ │ │ └── drawable-xxhdpi │ │ │ └── contact.png │ ├── contact@2x.png │ ├── contactcard.png │ ├── contactcard │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── contactcard.png │ │ │ ├── drawable-mdpi │ │ │ └── contactcard.png │ │ │ ├── drawable-xhdpi │ │ │ └── contactcard.png │ │ │ └── drawable-xxhdpi │ │ │ └── contactcard.png │ ├── contactcard@2x.png │ ├── dashboard.png │ ├── dashboard │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── dashboard.png │ │ │ ├── drawable-mdpi │ │ │ └── dashboard.png │ │ │ ├── drawable-xhdpi │ │ │ └── dashboard.png │ │ │ └── drawable-xxhdpi │ │ │ └── dashboard.png │ ├── dashboard@2x.png │ ├── icon-114.png │ ├── icon-120.png │ ├── icon-144.png │ ├── icon-152.png │ ├── icon-57.png │ ├── icon-72.png │ ├── icon-76.png │ ├── icon.png │ ├── icon_Original.png │ ├── lead.png │ ├── lead │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── lead.png │ │ │ ├── drawable-mdpi │ │ │ └── lead.png │ │ │ ├── drawable-xhdpi │ │ │ └── lead.png │ │ │ └── drawable-xxhdpi │ │ │ └── lead.png │ ├── lead@2x.png │ ├── map.png │ ├── map │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── map.png │ │ │ ├── drawable-mdpi │ │ │ └── map.png │ │ │ ├── drawable-xhdpi │ │ │ └── map.png │ │ │ └── drawable-xxhdpi │ │ │ └── map.png │ ├── map@2x.png │ ├── menubk.png │ ├── menubk@2x.png │ ├── mobile-crm icon.sketch │ │ ├── Data │ │ ├── metadata │ │ └── version │ ├── mobilecrmicon300x300.png │ ├── order.png │ ├── order │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── order.png │ │ │ ├── drawable-mdpi │ │ │ └── order.png │ │ │ ├── drawable-xhdpi │ │ │ └── order.png │ │ │ └── drawable-xxhdpi │ │ │ └── order.png │ ├── order@2x.png │ ├── orderhistory.png │ ├── orderhistory │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── orderhistory.png │ │ │ ├── drawable-mdpi │ │ │ └── orderhistory.png │ │ │ ├── drawable-xhdpi │ │ │ └── orderhistory.png │ │ │ └── drawable-xxhdpi │ │ │ └── orderhistory.png │ ├── orderhistory@2x.png │ ├── productcatalog.png │ ├── productcatalog@2x.png │ ├── slideout.png │ ├── slideout │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── slideout.png │ │ │ ├── drawable-mdpi │ │ │ └── slideout.png │ │ │ ├── drawable-xhdpi │ │ │ └── slideout.png │ │ │ └── drawable-xxhdpi │ │ │ └── slideout.png │ └── slideout@2x.png └── v2 │ ├── Android │ ├── account │ │ ├── Slice 2.png │ │ ├── Slice 2@1.33x.png │ │ ├── Slice 2@2.67x.png │ │ ├── Slice 2@2x.png │ │ └── Slice 2@4x.png │ ├── contact │ │ ├── Slice 2.png │ │ ├── Slice 2@1.33x.png │ │ ├── Slice 2@2.67x.png │ │ ├── Slice 2@2x.png │ │ └── Slice 2@4x.png │ ├── dashboard │ │ ├── Slice 2.png │ │ ├── Slice 2@1.33x.png │ │ ├── Slice 2@2.67x.png │ │ ├── Slice 2@2x.png │ │ └── Slice 2@4x.png │ ├── lead │ │ ├── Slice 2.png │ │ ├── Slice 2@1.33x.png │ │ ├── Slice 2@2.67x.png │ │ ├── Slice 2@2x.png │ │ └── Slice 2@4x.png │ ├── productcatalog │ │ ├── Slice 2.png │ │ ├── Slice 2@1.33x.png │ │ ├── Slice 2@2.67x.png │ │ ├── Slice 2@2x.png │ │ └── Slice 2@4x.png │ ├── save │ │ ├── Slice 2.png │ │ ├── Slice 2@1.33x.png │ │ ├── Slice 2@2.67x.png │ │ ├── Slice 2@2x.png │ │ └── Slice 2@4x.png │ └── settings │ │ ├── Slice 2.png │ │ ├── Slice 2@1.33x.png │ │ ├── Slice 2@2.67x.png │ │ ├── Slice 2@2x.png │ │ └── Slice 2@4x.png │ ├── WP │ ├── account.png │ ├── contact.png │ ├── dashboard.png │ ├── lead.png │ ├── menubk.png │ ├── productcatalog.png │ ├── save.png │ └── settings.png │ ├── iOS │ ├── account.png │ ├── account@2x.png │ ├── contact.png │ ├── contact@2x.png │ ├── dashboard.png │ ├── dashboard@2x.png │ ├── lead.png │ ├── lead@2x.png │ ├── map.png │ ├── map@2x.png │ ├── order.png │ ├── order@2x.png │ ├── orderhistory.png │ ├── orderhistory@2x.png │ ├── productcatalog.png │ ├── productcatalog@2x.png │ ├── save.png │ ├── save@2x.png │ ├── settings.png │ └── settings@2x.png │ ├── menubk.png │ └── menubk@2x.png └── markdown-graphics ├── ADBConnect.png ├── AndroidPlayer.png ├── DeviceSelect-Android.png ├── DeviceSelect-iOS.png ├── SQLite-WP.png ├── SigPad-CompileError.png ├── SigPad-ComponentStore.png ├── SigPad-Components.png ├── SigPad-Reference.png ├── StartupProject.png ├── UpdateCheck-OSX.png ├── UpdateCheck-Windows.png ├── VervetaCatalog.png ├── VervetaDashboard.png └── VervetaMaps.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /Common/SignaturePad.WP7/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/Common/SignaturePad.WP7/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Common/SignaturePad.WP7/SignaturePad.WP7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/Common/SignaturePad.WP7/SignaturePad.WP7.csproj -------------------------------------------------------------------------------- /Common/SignaturePad.WP7/SignaturePad.WP7.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/Common/SignaturePad.WP7/SignaturePad.WP7.sln -------------------------------------------------------------------------------- /Common/SignaturePad.WP7/SignaturePad.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/Common/SignaturePad.WP7/SignaturePad.xaml -------------------------------------------------------------------------------- /Common/SignaturePad.WP7/SignaturePad.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/Common/SignaturePad.WP7/SignaturePad.xaml.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/LICENSE -------------------------------------------------------------------------------- /MobileCRM.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /MobileCRM.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/MainActivity.cs -------------------------------------------------------------------------------- /MobileCRM.Android/MobileCRM.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/MobileCRM.Android.csproj -------------------------------------------------------------------------------- /MobileCRM.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /MobileCRM.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MobileCRM.Android/Renderers/BarChartRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Renderers/BarChartRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.Android/Renderers/ListTextCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Renderers/ListTextCellRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.Android/Renderers/LoginPageRenderer_Android.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Renderers/LoginPageRenderer_Android.cs -------------------------------------------------------------------------------- /MobileCRM.Android/Renderers/MenuCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Renderers/MenuCellRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.Android/Renderers/PieChartRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Renderers/PieChartRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.Android/Renderers/SignaturePadRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Renderers/SignaturePadRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/Colors.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-hdpi/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-hdpi/account.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-hdpi/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-hdpi/add.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-hdpi/catalog_printer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-hdpi/catalog_printer.jpg -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-hdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-hdpi/contact.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-hdpi/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-hdpi/dashboard.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-hdpi/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-hdpi/filter.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-hdpi/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-hdpi/lead.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-hdpi/menubk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-hdpi/menubk.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-hdpi/productcatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-hdpi/productcatalog.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-hdpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-hdpi/refresh.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-hdpi/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-hdpi/save.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-hdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-hdpi/settings.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-hdpi/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-hdpi/slideout.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-mdpi/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-mdpi/account.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-mdpi/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-mdpi/add.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-mdpi/catalog_printer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-mdpi/catalog_printer.jpg -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-mdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-mdpi/contact.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-mdpi/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-mdpi/dashboard.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-mdpi/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-mdpi/filter.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-mdpi/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-mdpi/lead.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-mdpi/menubk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-mdpi/menubk.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-mdpi/productcatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-mdpi/productcatalog.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-mdpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-mdpi/refresh.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-mdpi/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-mdpi/save.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-mdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-mdpi/settings.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-mdpi/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-mdpi/slideout.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xhdpi/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xhdpi/account.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xhdpi/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xhdpi/add.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xhdpi/catalog_printer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xhdpi/catalog_printer.jpg -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xhdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xhdpi/contact.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xhdpi/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xhdpi/dashboard.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xhdpi/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xhdpi/filter.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xhdpi/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xhdpi/lead.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xhdpi/menubk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xhdpi/menubk.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xhdpi/productcatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xhdpi/productcatalog.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xhdpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xhdpi/refresh.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xhdpi/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xhdpi/save.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xhdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xhdpi/settings.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xhdpi/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xhdpi/slideout.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xxhdpi/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xxhdpi/account.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xxhdpi/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xxhdpi/add.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xxhdpi/catalog_printer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xxhdpi/catalog_printer.jpg -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xxhdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xxhdpi/contact.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xxhdpi/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xxhdpi/dashboard.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xxhdpi/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xxhdpi/filter.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xxhdpi/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xxhdpi/lead.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xxhdpi/menubk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xxhdpi/menubk.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xxhdpi/productcatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xxhdpi/productcatalog.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xxhdpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xxhdpi/refresh.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xxhdpi/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xxhdpi/save.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xxhdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xxhdpi/settings.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable-xxhdpi/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable-xxhdpi/slideout.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/Icon@2x.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/Iconoriginal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/Iconoriginal.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/account.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/catalog_combo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/catalog_combo.jpg -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/catalog_ink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/catalog_ink.jpg -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/catalog_paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/catalog_paper.jpg -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/catalog_printer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/catalog_printer.jpg -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/catalog_scanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/catalog_scanner.jpg -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/contact.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/dashboard.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/lead.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/menubk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/menubk.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/productcatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/productcatalog.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/save.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/settings.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/slideout.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/zoom_in.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/drawable/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/drawable/zoom_out.png -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/layout/Main.axml -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/values/Colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/values/Colors.xml -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/values/Strings.xml -------------------------------------------------------------------------------- /MobileCRM.Android/Resources/values/styles_basetheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/Resources/values/styles_basetheme.xml -------------------------------------------------------------------------------- /MobileCRM.Android/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/app.config -------------------------------------------------------------------------------- /MobileCRM.Android/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Android/packages.config -------------------------------------------------------------------------------- /MobileCRM.CustomControls/BarChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.CustomControls/BarChart.cs -------------------------------------------------------------------------------- /MobileCRM.CustomControls/Converters/ConvertableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.CustomControls/Converters/ConvertableConverter.cs -------------------------------------------------------------------------------- /MobileCRM.CustomControls/ListTextCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.CustomControls/ListTextCell.cs -------------------------------------------------------------------------------- /MobileCRM.CustomControls/MenuCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.CustomControls/MenuCell.cs -------------------------------------------------------------------------------- /MobileCRM.CustomControls/MobileCRM.CustomControls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.CustomControls/MobileCRM.CustomControls.csproj -------------------------------------------------------------------------------- /MobileCRM.CustomControls/PieChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.CustomControls/PieChart.cs -------------------------------------------------------------------------------- /MobileCRM.CustomControls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.CustomControls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MobileCRM.CustomControls/SignaturePad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.CustomControls/SignaturePad.cs -------------------------------------------------------------------------------- /MobileCRM.CustomControls/TextCellEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.CustomControls/TextCellEx.cs -------------------------------------------------------------------------------- /MobileCRM.CustomControls/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.CustomControls/packages.config -------------------------------------------------------------------------------- /MobileCRM.Services/Attributes/CurrencyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Attributes/CurrencyAttribute.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Attributes/DisplayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Attributes/DisplayAttribute.cs -------------------------------------------------------------------------------- /MobileCRM.Services/IAuthenticationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/IAuthenticationResponse.cs -------------------------------------------------------------------------------- /MobileCRM.Services/IAuthenticationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/IAuthenticationService.cs -------------------------------------------------------------------------------- /MobileCRM.Services/IContactRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/IContactRepository.cs -------------------------------------------------------------------------------- /MobileCRM.Services/IGeoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/IGeoService.cs -------------------------------------------------------------------------------- /MobileCRM.Services/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/IRepository.cs -------------------------------------------------------------------------------- /MobileCRM.Services/MobileCRM.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/MobileCRM.Services.csproj -------------------------------------------------------------------------------- /MobileCRM.Services/Models/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Models/Account.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Models/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Models/Address.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Models/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Models/Contact.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Models/IContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Models/IContact.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Models/ILead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Models/ILead.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Models/ILocatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Models/ILocatable.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Models/IUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Models/IUser.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Models/Lead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Models/Lead.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Models/Opportunity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Models/Opportunity.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Models/Proposal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Models/Proposal.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Models/User.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Repositories/AccountRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Repositories/AccountRepository.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Repositories/ContactRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Repositories/ContactRepository.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Repositories/InMemoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Repositories/InMemoryRepository.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Repositories/LeadRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Repositories/LeadRepository.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Repositories/OpportunityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Repositories/OpportunityRepository.cs -------------------------------------------------------------------------------- /MobileCRM.Services/Repositories/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/Repositories/UserRepository.cs -------------------------------------------------------------------------------- /MobileCRM.Services/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Services/packages.config -------------------------------------------------------------------------------- /MobileCRM.Shared/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/App.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/CustomControls/BarChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/CustomControls/BarChart.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/CustomControls/Converters/ConvertableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/CustomControls/Converters/ConvertableConverter.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/CustomControls/ListTextCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/CustomControls/ListTextCell.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/CustomControls/MenuCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/CustomControls/MenuCell.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/CustomControls/PieChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/CustomControls/PieChart.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/CustomControls/SignaturePad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/CustomControls/SignaturePad.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Helpers/BarGraphHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Helpers/BarGraphHelper.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Helpers/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Helpers/Color.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Helpers/ConvertableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Helpers/ConvertableConverter.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Helpers/EditCellFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Helpers/EditCellFactory.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Helpers/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Helpers/Utils.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Interfaces/IDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Interfaces/IDataManager.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/MobileCRM.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/MobileCRM.Shared.csproj -------------------------------------------------------------------------------- /MobileCRM.Shared/Models/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Models/Account.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Models/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Models/Address.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Models/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Models/BaseModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Models/CatalogItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Models/CatalogItem.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Models/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Models/Contact.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Models/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Models/MenuItem.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Models/Order.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Models/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Models/UserInfo.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Accounts/AccountContactView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Accounts/AccountContactView.xaml -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Accounts/AccountContactView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Accounts/AccountContactView.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Accounts/AccountDetailsTabView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Accounts/AccountDetailsTabView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Accounts/AccountDetailsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Accounts/AccountDetailsView.xaml -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Accounts/AccountDetailsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Accounts/AccountDetailsView.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Accounts/AccountMapView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Accounts/AccountMapView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Accounts/AccountNotesView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Accounts/AccountNotesView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Accounts/AccountsMapView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Accounts/AccountsMapView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Accounts/AccountsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Accounts/AccountsView.xaml -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Accounts/AccountsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Accounts/AccountsView.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Base/BaseView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Base/BaseView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Base/TabView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Base/TabView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Catalog/CatalogCarouselView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Catalog/CatalogCarouselView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Catalog/CatalogView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Catalog/CatalogView.xaml -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Catalog/CatalogView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Catalog/CatalogView.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Contacts/ContactDetailsTabView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Contacts/ContactDetailsTabView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Contacts/ContactDetailsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Contacts/ContactDetailsView.xaml -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Contacts/ContactDetailsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Contacts/ContactDetailsView.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Contacts/ContactMapView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Contacts/ContactMapView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Contacts/ContactsMapView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Contacts/ContactsMapView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Contacts/ContactsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Contacts/ContactsView.xaml -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Contacts/ContactsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Contacts/ContactsView.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Home/DashboardView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Home/DashboardView.xaml -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Home/DashboardView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Home/DashboardView.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Home/LoginView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Home/LoginView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Home/MenuView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Home/MenuView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Home/RootView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Home/RootView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Home/SplashPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Home/SplashPage.xaml -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Home/SplashPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Home/SplashPage.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Leads/LeadDetailsTabView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Leads/LeadDetailsTabView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Leads/LeadDetailsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Leads/LeadDetailsView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Leads/LeadsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Leads/LeadsView.xaml -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Leads/LeadsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Leads/LeadsView.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Orders/AccountHistoryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Orders/AccountHistoryView.xaml -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Orders/AccountHistoryView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Orders/AccountHistoryView.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Orders/AccountOrderDetailsView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Orders/AccountOrderDetailsView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Orders/AccountOrdersView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Orders/AccountOrdersView.xaml -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Orders/AccountOrdersView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Orders/AccountOrdersView.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Orders/NewOrderView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Orders/NewOrderView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Settings/DataSettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Settings/DataSettingsView.xaml -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Settings/DataSettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Settings/DataSettingsView.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Settings/SettingsTabView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Settings/SettingsTabView.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Settings/UserSettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Settings/UserSettingsView.xaml -------------------------------------------------------------------------------- /MobileCRM.Shared/Pages/Settings/UserSettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Pages/Settings/UserSettingsView.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Properties/Attributes/CurrencyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Properties/Attributes/CurrencyAttribute.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Properties/Attributes/DisplayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Properties/Attributes/DisplayAttribute.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Services/AuthInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Services/AuthInfo.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/Services/AzureService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/Services/AzureService.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/ViewModels/Accounts/AccountDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/ViewModels/Accounts/AccountDetailsViewModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/ViewModels/Accounts/AccountsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/ViewModels/Accounts/AccountsViewModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/ViewModels/Catalog/CatalogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/ViewModels/Catalog/CatalogViewModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/ViewModels/Contacts/ContactDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/ViewModels/Contacts/ContactDetailsViewModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/ViewModels/Contacts/ContactsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/ViewModels/Contacts/ContactsViewModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/ViewModels/Home/DashboardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/ViewModels/Home/DashboardViewModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/ViewModels/Home/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/ViewModels/Home/HomeViewModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/ViewModels/Home/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/ViewModels/Home/LoginViewModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/ViewModels/Leads/LeadsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/ViewModels/Leads/LeadsViewModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/ViewModels/Orders/OrderDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/ViewModels/Orders/OrderDetailsViewModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/ViewModels/Orders/OrdersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/ViewModels/Orders/OrdersViewModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/ViewModels/Settings/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/ViewModels/Settings/UserViewModel.cs -------------------------------------------------------------------------------- /MobileCRM.Shared/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.Shared/packages.config -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/App.xaml -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/App.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/LocalizedStrings.cs -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/MainPage.xaml -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/MobileCRM.WindowsPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/MobileCRM.WindowsPhone.csproj -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Properties/AppManifest.xml -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/README_FIRST.txt -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Renderers/BarChartRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Renderers/BarChartRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Renderers/LoginPageRenderer_WP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Renderers/LoginPageRenderer_WP.cs -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Renderers/PieChartRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Renderers/PieChartRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Renderers/SignaturePadRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Renderers/SignaturePadRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Resources/AppResources.resx -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Resources/XMLFile1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Toolkit.Content/ApplicationBar.Add.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Toolkit.Content/ApplicationBar.Cancel.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Toolkit.Content/ApplicationBar.Check.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Toolkit.Content/ApplicationBar.Delete.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/Toolkit.Content/ApplicationBar.Select.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/account.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/add.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/app.config -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/catalog_combo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/catalog_combo.jpg -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/catalog_ink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/catalog_ink.jpg -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/catalog_paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/catalog_paper.jpg -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/catalog_printer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/catalog_printer.jpg -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/catalog_scanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/catalog_scanner.jpg -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/contact.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/dashboard.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/filter.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/lead.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/menubk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/menubk.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/packages.config -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/productcatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/productcatalog.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/refresh.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/save.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/settings.png -------------------------------------------------------------------------------- /MobileCRM.WindowsPhone/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.WindowsPhone/slideout.png -------------------------------------------------------------------------------- /MobileCRM.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /MobileCRM.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Entitlements.plist -------------------------------------------------------------------------------- /MobileCRM.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Info.plist -------------------------------------------------------------------------------- /MobileCRM.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Main.cs -------------------------------------------------------------------------------- /MobileCRM.iOS/MobileCRM.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/MobileCRM.iOS.csproj -------------------------------------------------------------------------------- /MobileCRM.iOS/Renderers/BarChartRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Renderers/BarChartRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.iOS/Renderers/CustomTabletMasterDetailRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Renderers/CustomTabletMasterDetailRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.iOS/Renderers/ImmortalizeStoryboard.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Renderers/ImmortalizeStoryboard.designer.cs -------------------------------------------------------------------------------- /MobileCRM.iOS/Renderers/ImmortalizeStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Renderers/ImmortalizeStoryboard.storyboard -------------------------------------------------------------------------------- /MobileCRM.iOS/Renderers/ListTextCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Renderers/ListTextCellRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.iOS/Renderers/LoginPageRenderer_iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Renderers/LoginPageRenderer_iOS.cs -------------------------------------------------------------------------------- /MobileCRM.iOS/Renderers/MenuCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Renderers/MenuCellRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.iOS/Renderers/PieChartRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Renderers/PieChartRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.iOS/Renderers/SignaturePadRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Renderers/SignaturePadRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.iOS/Renderers/StripedListViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Renderers/StripedListViewRenderer.cs -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/Default-iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/Default-iPad.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/Default-iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/Default-iPad@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/Icon-72@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/Icon-iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/Icon-iPad@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/account.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/account@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/add.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/add@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/catalog_combo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/catalog_combo.jpg -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/catalog_ink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/catalog_ink.jpg -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/catalog_paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/catalog_paper.jpg -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/catalog_printer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/catalog_printer.jpg -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/catalog_scanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/catalog_scanner.jpg -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/contact.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/contact@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/contact@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/contactcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/contactcard.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/contactcard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/contactcard@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/dashboard.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/dashboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/dashboard@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/icon-114.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/icon-120.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/icon-144.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/icon-152.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/icon-57.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/icon-72.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/icon-76.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/lead.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/lead@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/lead@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/map.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/map@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/menubk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/menubk.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/menubk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/menubk@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/order.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/order@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/order@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/orderhistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/orderhistory.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/orderhistory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/orderhistory@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/productcatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/productcatalog.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/productcatalog@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/productcatalog@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/refresh.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/refresh@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/save.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/save@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/save@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/settings.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/settings@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/slideout.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/slideout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/slideout@2x.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/xamarin-icon-simplified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/xamarin-icon-simplified.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/zoom_in.png -------------------------------------------------------------------------------- /MobileCRM.iOS/Resources/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/Resources/zoom_out.png -------------------------------------------------------------------------------- /MobileCRM.iOS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/app.config -------------------------------------------------------------------------------- /MobileCRM.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.iOS/packages.config -------------------------------------------------------------------------------- /MobileCRM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/MobileCRM.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/README.md -------------------------------------------------------------------------------- /debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/debug.keystore -------------------------------------------------------------------------------- /icon graphics/v1/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/Icon@2x.png -------------------------------------------------------------------------------- /icon graphics/v1/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/account.png -------------------------------------------------------------------------------- /icon graphics/v1/account/res/drawable-hdpi/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/account/res/drawable-hdpi/account.png -------------------------------------------------------------------------------- /icon graphics/v1/account/res/drawable-mdpi/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/account/res/drawable-mdpi/account.png -------------------------------------------------------------------------------- /icon graphics/v1/account/res/drawable-xhdpi/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/account/res/drawable-xhdpi/account.png -------------------------------------------------------------------------------- /icon graphics/v1/account/res/drawable-xxhdpi/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/account/res/drawable-xxhdpi/account.png -------------------------------------------------------------------------------- /icon graphics/v1/account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/account@2x.png -------------------------------------------------------------------------------- /icon graphics/v1/companycard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/companycard.png -------------------------------------------------------------------------------- /icon graphics/v1/companycard/res/drawable-hdpi/ic_action_companycard2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/companycard/res/drawable-hdpi/ic_action_companycard2x.png -------------------------------------------------------------------------------- /icon graphics/v1/companycard/res/drawable-mdpi/ic_action_companycard2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/companycard/res/drawable-mdpi/ic_action_companycard2x.png -------------------------------------------------------------------------------- /icon graphics/v1/companycard/res/drawable-xhdpi/ic_action_companycard2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/companycard/res/drawable-xhdpi/ic_action_companycard2x.png -------------------------------------------------------------------------------- /icon graphics/v1/companycard/res/drawable-xxhdpi/ic_action_companycard2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/companycard/res/drawable-xxhdpi/ic_action_companycard2x.png -------------------------------------------------------------------------------- /icon graphics/v1/companycard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/companycard@2x.png -------------------------------------------------------------------------------- /icon graphics/v1/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/contact.png -------------------------------------------------------------------------------- /icon graphics/v1/contact/res/drawable-hdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/contact/res/drawable-hdpi/contact.png -------------------------------------------------------------------------------- /icon graphics/v1/contact/res/drawable-mdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/contact/res/drawable-mdpi/contact.png -------------------------------------------------------------------------------- /icon graphics/v1/contact/res/drawable-xhdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/contact/res/drawable-xhdpi/contact.png -------------------------------------------------------------------------------- /icon graphics/v1/contact/res/drawable-xxhdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/contact/res/drawable-xxhdpi/contact.png -------------------------------------------------------------------------------- /icon graphics/v1/contact@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/contact@2x.png -------------------------------------------------------------------------------- /icon graphics/v1/contactcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/contactcard.png -------------------------------------------------------------------------------- /icon graphics/v1/contactcard/res/drawable-hdpi/contactcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/contactcard/res/drawable-hdpi/contactcard.png -------------------------------------------------------------------------------- /icon graphics/v1/contactcard/res/drawable-mdpi/contactcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/contactcard/res/drawable-mdpi/contactcard.png -------------------------------------------------------------------------------- /icon graphics/v1/contactcard/res/drawable-xhdpi/contactcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/contactcard/res/drawable-xhdpi/contactcard.png -------------------------------------------------------------------------------- /icon graphics/v1/contactcard/res/drawable-xxhdpi/contactcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/contactcard/res/drawable-xxhdpi/contactcard.png -------------------------------------------------------------------------------- /icon graphics/v1/contactcard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/contactcard@2x.png -------------------------------------------------------------------------------- /icon graphics/v1/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/dashboard.png -------------------------------------------------------------------------------- /icon graphics/v1/dashboard/res/drawable-hdpi/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/dashboard/res/drawable-hdpi/dashboard.png -------------------------------------------------------------------------------- /icon graphics/v1/dashboard/res/drawable-mdpi/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/dashboard/res/drawable-mdpi/dashboard.png -------------------------------------------------------------------------------- /icon graphics/v1/dashboard/res/drawable-xhdpi/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/dashboard/res/drawable-xhdpi/dashboard.png -------------------------------------------------------------------------------- /icon graphics/v1/dashboard/res/drawable-xxhdpi/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/dashboard/res/drawable-xxhdpi/dashboard.png -------------------------------------------------------------------------------- /icon graphics/v1/dashboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/dashboard@2x.png -------------------------------------------------------------------------------- /icon graphics/v1/icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/icon-114.png -------------------------------------------------------------------------------- /icon graphics/v1/icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/icon-120.png -------------------------------------------------------------------------------- /icon graphics/v1/icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/icon-144.png -------------------------------------------------------------------------------- /icon graphics/v1/icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/icon-152.png -------------------------------------------------------------------------------- /icon graphics/v1/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/icon-57.png -------------------------------------------------------------------------------- /icon graphics/v1/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/icon-72.png -------------------------------------------------------------------------------- /icon graphics/v1/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/icon-76.png -------------------------------------------------------------------------------- /icon graphics/v1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/icon.png -------------------------------------------------------------------------------- /icon graphics/v1/icon_Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/icon_Original.png -------------------------------------------------------------------------------- /icon graphics/v1/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/lead.png -------------------------------------------------------------------------------- /icon graphics/v1/lead/res/drawable-hdpi/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/lead/res/drawable-hdpi/lead.png -------------------------------------------------------------------------------- /icon graphics/v1/lead/res/drawable-mdpi/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/lead/res/drawable-mdpi/lead.png -------------------------------------------------------------------------------- /icon graphics/v1/lead/res/drawable-xhdpi/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/lead/res/drawable-xhdpi/lead.png -------------------------------------------------------------------------------- /icon graphics/v1/lead/res/drawable-xxhdpi/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/lead/res/drawable-xxhdpi/lead.png -------------------------------------------------------------------------------- /icon graphics/v1/lead@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/lead@2x.png -------------------------------------------------------------------------------- /icon graphics/v1/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/map.png -------------------------------------------------------------------------------- /icon graphics/v1/map/res/drawable-hdpi/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/map/res/drawable-hdpi/map.png -------------------------------------------------------------------------------- /icon graphics/v1/map/res/drawable-mdpi/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/map/res/drawable-mdpi/map.png -------------------------------------------------------------------------------- /icon graphics/v1/map/res/drawable-xhdpi/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/map/res/drawable-xhdpi/map.png -------------------------------------------------------------------------------- /icon graphics/v1/map/res/drawable-xxhdpi/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/map/res/drawable-xxhdpi/map.png -------------------------------------------------------------------------------- /icon graphics/v1/map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/map@2x.png -------------------------------------------------------------------------------- /icon graphics/v1/menubk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/menubk.png -------------------------------------------------------------------------------- /icon graphics/v1/menubk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/menubk@2x.png -------------------------------------------------------------------------------- /icon graphics/v1/mobile-crm icon.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/mobile-crm icon.sketch/Data -------------------------------------------------------------------------------- /icon graphics/v1/mobile-crm icon.sketch/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/mobile-crm icon.sketch/metadata -------------------------------------------------------------------------------- /icon graphics/v1/mobile-crm icon.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /icon graphics/v1/mobilecrmicon300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/mobilecrmicon300x300.png -------------------------------------------------------------------------------- /icon graphics/v1/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/order.png -------------------------------------------------------------------------------- /icon graphics/v1/order/res/drawable-hdpi/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/order/res/drawable-hdpi/order.png -------------------------------------------------------------------------------- /icon graphics/v1/order/res/drawable-mdpi/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/order/res/drawable-mdpi/order.png -------------------------------------------------------------------------------- /icon graphics/v1/order/res/drawable-xhdpi/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/order/res/drawable-xhdpi/order.png -------------------------------------------------------------------------------- /icon graphics/v1/order/res/drawable-xxhdpi/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/order/res/drawable-xxhdpi/order.png -------------------------------------------------------------------------------- /icon graphics/v1/order@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/order@2x.png -------------------------------------------------------------------------------- /icon graphics/v1/orderhistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/orderhistory.png -------------------------------------------------------------------------------- /icon graphics/v1/orderhistory/res/drawable-hdpi/orderhistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/orderhistory/res/drawable-hdpi/orderhistory.png -------------------------------------------------------------------------------- /icon graphics/v1/orderhistory/res/drawable-mdpi/orderhistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/orderhistory/res/drawable-mdpi/orderhistory.png -------------------------------------------------------------------------------- /icon graphics/v1/orderhistory/res/drawable-xhdpi/orderhistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/orderhistory/res/drawable-xhdpi/orderhistory.png -------------------------------------------------------------------------------- /icon graphics/v1/orderhistory/res/drawable-xxhdpi/orderhistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/orderhistory/res/drawable-xxhdpi/orderhistory.png -------------------------------------------------------------------------------- /icon graphics/v1/orderhistory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/orderhistory@2x.png -------------------------------------------------------------------------------- /icon graphics/v1/productcatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/productcatalog.png -------------------------------------------------------------------------------- /icon graphics/v1/productcatalog@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/productcatalog@2x.png -------------------------------------------------------------------------------- /icon graphics/v1/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/slideout.png -------------------------------------------------------------------------------- /icon graphics/v1/slideout/res/drawable-hdpi/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/slideout/res/drawable-hdpi/slideout.png -------------------------------------------------------------------------------- /icon graphics/v1/slideout/res/drawable-mdpi/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/slideout/res/drawable-mdpi/slideout.png -------------------------------------------------------------------------------- /icon graphics/v1/slideout/res/drawable-xhdpi/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/slideout/res/drawable-xhdpi/slideout.png -------------------------------------------------------------------------------- /icon graphics/v1/slideout/res/drawable-xxhdpi/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/slideout/res/drawable-xxhdpi/slideout.png -------------------------------------------------------------------------------- /icon graphics/v1/slideout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v1/slideout@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/account/Slice 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/account/Slice 2.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/account/Slice 2@1.33x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/account/Slice 2@1.33x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/account/Slice 2@2.67x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/account/Slice 2@2.67x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/account/Slice 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/account/Slice 2@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/account/Slice 2@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/account/Slice 2@4x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/contact/Slice 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/contact/Slice 2.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/contact/Slice 2@1.33x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/contact/Slice 2@1.33x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/contact/Slice 2@2.67x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/contact/Slice 2@2.67x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/contact/Slice 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/contact/Slice 2@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/contact/Slice 2@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/contact/Slice 2@4x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/dashboard/Slice 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/dashboard/Slice 2.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/dashboard/Slice 2@1.33x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/dashboard/Slice 2@1.33x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/dashboard/Slice 2@2.67x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/dashboard/Slice 2@2.67x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/dashboard/Slice 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/dashboard/Slice 2@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/dashboard/Slice 2@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/dashboard/Slice 2@4x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/lead/Slice 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/lead/Slice 2.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/lead/Slice 2@1.33x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/lead/Slice 2@1.33x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/lead/Slice 2@2.67x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/lead/Slice 2@2.67x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/lead/Slice 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/lead/Slice 2@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/lead/Slice 2@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/lead/Slice 2@4x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/productcatalog/Slice 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/productcatalog/Slice 2.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/productcatalog/Slice 2@1.33x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/productcatalog/Slice 2@1.33x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/productcatalog/Slice 2@2.67x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/productcatalog/Slice 2@2.67x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/productcatalog/Slice 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/productcatalog/Slice 2@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/productcatalog/Slice 2@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/productcatalog/Slice 2@4x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/save/Slice 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/save/Slice 2.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/save/Slice 2@1.33x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/save/Slice 2@1.33x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/save/Slice 2@2.67x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/save/Slice 2@2.67x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/save/Slice 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/save/Slice 2@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/save/Slice 2@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/save/Slice 2@4x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/settings/Slice 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/settings/Slice 2.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/settings/Slice 2@1.33x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/settings/Slice 2@1.33x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/settings/Slice 2@2.67x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/settings/Slice 2@2.67x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/settings/Slice 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/settings/Slice 2@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/Android/settings/Slice 2@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/Android/settings/Slice 2@4x.png -------------------------------------------------------------------------------- /icon graphics/v2/WP/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/WP/account.png -------------------------------------------------------------------------------- /icon graphics/v2/WP/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/WP/contact.png -------------------------------------------------------------------------------- /icon graphics/v2/WP/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/WP/dashboard.png -------------------------------------------------------------------------------- /icon graphics/v2/WP/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/WP/lead.png -------------------------------------------------------------------------------- /icon graphics/v2/WP/menubk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/WP/menubk.png -------------------------------------------------------------------------------- /icon graphics/v2/WP/productcatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/WP/productcatalog.png -------------------------------------------------------------------------------- /icon graphics/v2/WP/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/WP/save.png -------------------------------------------------------------------------------- /icon graphics/v2/WP/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/WP/settings.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/account.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/account@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/contact.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/contact@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/contact@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/dashboard.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/dashboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/dashboard@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/lead.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/lead@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/lead@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/map.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/map@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/order.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/order@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/order@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/orderhistory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/orderhistory.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/orderhistory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/orderhistory@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/productcatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/productcatalog.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/productcatalog@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/productcatalog@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/save.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/save@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/save@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/settings.png -------------------------------------------------------------------------------- /icon graphics/v2/iOS/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/iOS/settings@2x.png -------------------------------------------------------------------------------- /icon graphics/v2/menubk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/menubk.png -------------------------------------------------------------------------------- /icon graphics/v2/menubk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/icon graphics/v2/menubk@2x.png -------------------------------------------------------------------------------- /markdown-graphics/ADBConnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/ADBConnect.png -------------------------------------------------------------------------------- /markdown-graphics/AndroidPlayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/AndroidPlayer.png -------------------------------------------------------------------------------- /markdown-graphics/DeviceSelect-Android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/DeviceSelect-Android.png -------------------------------------------------------------------------------- /markdown-graphics/DeviceSelect-iOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/DeviceSelect-iOS.png -------------------------------------------------------------------------------- /markdown-graphics/SQLite-WP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/SQLite-WP.png -------------------------------------------------------------------------------- /markdown-graphics/SigPad-CompileError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/SigPad-CompileError.png -------------------------------------------------------------------------------- /markdown-graphics/SigPad-ComponentStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/SigPad-ComponentStore.png -------------------------------------------------------------------------------- /markdown-graphics/SigPad-Components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/SigPad-Components.png -------------------------------------------------------------------------------- /markdown-graphics/SigPad-Reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/SigPad-Reference.png -------------------------------------------------------------------------------- /markdown-graphics/StartupProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/StartupProject.png -------------------------------------------------------------------------------- /markdown-graphics/UpdateCheck-OSX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/UpdateCheck-OSX.png -------------------------------------------------------------------------------- /markdown-graphics/UpdateCheck-Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/UpdateCheck-Windows.png -------------------------------------------------------------------------------- /markdown-graphics/VervetaCatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/VervetaCatalog.png -------------------------------------------------------------------------------- /markdown-graphics/VervetaDashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/VervetaDashboard.png -------------------------------------------------------------------------------- /markdown-graphics/VervetaMaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/VervetaCRM/HEAD/markdown-graphics/VervetaMaps.png --------------------------------------------------------------------------------