From 69e5ec37217d2f0ca1dc1a690a699730ad359066 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Fri, 27 Jan 2017 16:32:29 +0100 Subject: [PATCH] Fixes the build --- ZicMoove/ZicMoove.Droid/MainActivity.cs | 1 + .../ZicMoove.Droid/Services/GCMHandlers/EstimateGCMHandler.cs | 1 + ZicMoove/ZicMoove.Droid/Services/GcmRegistrationIntentService.cs | 1 + ZicMoove/ZicMoove.Droid/Services/MyGcmIntentService.cs | 1 + ZicMoove/ZicMoove/App.xaml.cs | 1 + ZicMoove/ZicMoove/Data/EstimateEntity.cs | 1 + ZicMoove/ZicMoove/Data/LocaLEntity.cs | 1 + ZicMoove/ZicMoove/Data/NonCrUD/RemoteFiles.cs | 1 + ZicMoove/ZicMoove/Data/RemoteEntity.cs | 1 + ZicMoove/ZicMoove/Helpers/UserHelpers.cs | 1 + ZicMoove/ZicMoove/Pages/Chat/ChatPage.xaml.cs | 1 + ZicMoove/ZicMoove/Pages/EstimatePages/BookQueryPage.xaml.cs | 1 + ZicMoove/ZicMoove/Pages/EstimatePages/EditEstimatePage.xaml.cs | 1 + .../ZicMoove/Pages/EstimatePages/EstimateSigningPage.xaml.cs | 1 + ZicMoove/ZicMoove/Pages/UserProfile/AccountChooserPage.xaml.cs | 1 + ZicMoove/ZicMoove/Pages/UserProfile/DashboardPage.xaml.cs | 1 + ZicMoove/ZicMoove/Pages/UserProfile/UserFiles.xaml.cs | 1 + ZicMoove/ZicMoove/ViewModels/Messaging/ChatViewModel.cs | 1 + ZicMoove/ZicMoove/ViewModels/UserProfile/UserProfileViewModel.cs | 1 + 19 files changed, 19 insertions(+) diff --git a/ZicMoove/ZicMoove.Droid/MainActivity.cs b/ZicMoove/ZicMoove.Droid/MainActivity.cs index 8210cad1..e9da08ee 100644 --- a/ZicMoove/ZicMoove.Droid/MainActivity.cs +++ b/ZicMoove/ZicMoove.Droid/MainActivity.cs @@ -47,6 +47,7 @@ namespace ZicMoove.Droid using Interfaces; using Model.Auth.Account; using static Android.Manifest; + using Settings; [Activity(Name = "fr.pschneider.bas.MainActivity", Label = "ZicMoove", Theme = "@style/MainTheme", Icon = "@drawable/icon", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] public class MainActivity : diff --git a/ZicMoove/ZicMoove.Droid/Services/GCMHandlers/EstimateGCMHandler.cs b/ZicMoove/ZicMoove.Droid/Services/GCMHandlers/EstimateGCMHandler.cs index 2c80d64b..dc3826fd 100644 --- a/ZicMoove/ZicMoove.Droid/Services/GCMHandlers/EstimateGCMHandler.cs +++ b/ZicMoove/ZicMoove.Droid/Services/GCMHandlers/EstimateGCMHandler.cs @@ -14,6 +14,7 @@ using ZicMoove.Model.Social; using ZicMoove.Model; using ZicMoove.Model.Workflow; using ZicMoove.Data; +using ZicMoove.Settings; namespace ZicMoove.Droid.Services.GCMHandlers { diff --git a/ZicMoove/ZicMoove.Droid/Services/GcmRegistrationIntentService.cs b/ZicMoove/ZicMoove.Droid/Services/GcmRegistrationIntentService.cs index 4cf3bfdf..42a81b4d 100644 --- a/ZicMoove/ZicMoove.Droid/Services/GcmRegistrationIntentService.cs +++ b/ZicMoove/ZicMoove.Droid/Services/GcmRegistrationIntentService.cs @@ -8,6 +8,7 @@ using Android.Gms.Gcm; using Android.Gms.Gcm.Iid; using Android.OS; using Android; +using ZicMoove.Settings; namespace ZicMoove.Droid { diff --git a/ZicMoove/ZicMoove.Droid/Services/MyGcmIntentService.cs b/ZicMoove/ZicMoove.Droid/Services/MyGcmIntentService.cs index 1bdc6bea..9fbd7c84 100644 --- a/ZicMoove/ZicMoove.Droid/Services/MyGcmIntentService.cs +++ b/ZicMoove/ZicMoove.Droid/Services/MyGcmIntentService.cs @@ -4,6 +4,7 @@ using Android.OS; using Android.Content; using Android.Util; using Android.Widget; +using ZicMoove.Settings; namespace ZicMoove.Droid { diff --git a/ZicMoove/ZicMoove/App.xaml.cs b/ZicMoove/ZicMoove/App.xaml.cs index 98a82fbc..36a29144 100644 --- a/ZicMoove/ZicMoove/App.xaml.cs +++ b/ZicMoove/ZicMoove/App.xaml.cs @@ -31,6 +31,7 @@ namespace ZicMoove using Pages.Chat; using System.Collections.Generic; using Model.Social; + using Settings; public partial class App : Application // superclass new in 1.3 { diff --git a/ZicMoove/ZicMoove/Data/EstimateEntity.cs b/ZicMoove/ZicMoove/Data/EstimateEntity.cs index cbe23892..dacce8cb 100644 --- a/ZicMoove/ZicMoove/Data/EstimateEntity.cs +++ b/ZicMoove/ZicMoove/Data/EstimateEntity.cs @@ -4,6 +4,7 @@ namespace ZicMoove.Data using Helpers; using Model.Workflow; using Newtonsoft.Json; + using Settings; using System; using System.Diagnostics; using System.IO; diff --git a/ZicMoove/ZicMoove/Data/LocaLEntity.cs b/ZicMoove/ZicMoove/Data/LocaLEntity.cs index 8cd494d5..237b94a8 100644 --- a/ZicMoove/ZicMoove/Data/LocaLEntity.cs +++ b/ZicMoove/ZicMoove/Data/LocaLEntity.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; +using ZicMoove.Settings; namespace ZicMoove.Data { diff --git a/ZicMoove/ZicMoove/Data/NonCrUD/RemoteFiles.cs b/ZicMoove/ZicMoove/Data/NonCrUD/RemoteFiles.cs index 6f18698a..26a13bb6 100644 --- a/ZicMoove/ZicMoove/Data/NonCrUD/RemoteFiles.cs +++ b/ZicMoove/ZicMoove/Data/NonCrUD/RemoteFiles.cs @@ -6,6 +6,7 @@ namespace ZicMoove.Data.NonCrUD { using Helpers; using Model.FileSystem; + using Settings; public class RemoteFilesEntity : RemoteEntity { diff --git a/ZicMoove/ZicMoove/Data/RemoteEntity.cs b/ZicMoove/ZicMoove/Data/RemoteEntity.cs index b4711d47..2230eaec 100644 --- a/ZicMoove/ZicMoove/Data/RemoteEntity.cs +++ b/ZicMoove/ZicMoove/Data/RemoteEntity.cs @@ -9,6 +9,7 @@ using System.Net; namespace ZicMoove.Data { using Helpers; + using Settings; using System.Diagnostics; using System.Text; using System.Web; diff --git a/ZicMoove/ZicMoove/Helpers/UserHelpers.cs b/ZicMoove/ZicMoove/Helpers/UserHelpers.cs index eb3addb4..505f2dc9 100644 --- a/ZicMoove/ZicMoove/Helpers/UserHelpers.cs +++ b/ZicMoove/ZicMoove/Helpers/UserHelpers.cs @@ -10,6 +10,7 @@ namespace ZicMoove.Helpers { using Data.NonCrUD; using Model.FileSystem; + using Settings; public static class UserHelpers { diff --git a/ZicMoove/ZicMoove/Pages/Chat/ChatPage.xaml.cs b/ZicMoove/ZicMoove/Pages/Chat/ChatPage.xaml.cs index d2ee05ed..fe9c21fe 100644 --- a/ZicMoove/ZicMoove/Pages/Chat/ChatPage.xaml.cs +++ b/ZicMoove/ZicMoove/Pages/Chat/ChatPage.xaml.cs @@ -6,6 +6,7 @@ using Xamarin.Forms; namespace ZicMoove.Pages.Chat { using Data; + using Settings; using System.Linq; using ViewModels.Messaging; diff --git a/ZicMoove/ZicMoove/Pages/EstimatePages/BookQueryPage.xaml.cs b/ZicMoove/ZicMoove/Pages/EstimatePages/BookQueryPage.xaml.cs index 1038026e..da0222f4 100644 --- a/ZicMoove/ZicMoove/Pages/EstimatePages/BookQueryPage.xaml.cs +++ b/ZicMoove/ZicMoove/Pages/EstimatePages/BookQueryPage.xaml.cs @@ -9,6 +9,7 @@ namespace ZicMoove.Pages using EstimatePages; using Model.Social; using Model.Workflow; + using Settings; using ViewModels.EstimateAndBilling; public partial class BookQueryPage : ContentPage diff --git a/ZicMoove/ZicMoove/Pages/EstimatePages/EditEstimatePage.xaml.cs b/ZicMoove/ZicMoove/Pages/EstimatePages/EditEstimatePage.xaml.cs index db85afcd..9d6da291 100644 --- a/ZicMoove/ZicMoove/Pages/EstimatePages/EditEstimatePage.xaml.cs +++ b/ZicMoove/ZicMoove/Pages/EstimatePages/EditEstimatePage.xaml.cs @@ -6,6 +6,7 @@ namespace ZicMoove.Pages using Data; using EstimatePages; using Model.Workflow; + using Settings; using ViewModels.EstimateAndBilling; using ViewModels.Signing; diff --git a/ZicMoove/ZicMoove/Pages/EstimatePages/EstimateSigningPage.xaml.cs b/ZicMoove/ZicMoove/Pages/EstimatePages/EstimateSigningPage.xaml.cs index 5c8ec14a..a8edf113 100644 --- a/ZicMoove/ZicMoove/Pages/EstimatePages/EstimateSigningPage.xaml.cs +++ b/ZicMoove/ZicMoove/Pages/EstimatePages/EstimateSigningPage.xaml.cs @@ -7,6 +7,7 @@ using Xamarin.Forms; namespace ZicMoove.Pages.EstimatePages { using Data; + using Settings; using ViewModels.EstimateAndBilling; using ViewModels.Signing; diff --git a/ZicMoove/ZicMoove/Pages/UserProfile/AccountChooserPage.xaml.cs b/ZicMoove/ZicMoove/Pages/UserProfile/AccountChooserPage.xaml.cs index 9e3aeb3c..ecca477f 100644 --- a/ZicMoove/ZicMoove/Pages/UserProfile/AccountChooserPage.xaml.cs +++ b/ZicMoove/ZicMoove/Pages/UserProfile/AccountChooserPage.xaml.cs @@ -8,6 +8,7 @@ using ZicMoove.Helpers; using XLabs.Forms.Behaviors; using XLabs.Forms.Controls; using ZicMoove.Model.Auth.Account; +using ZicMoove.Settings; namespace ZicMoove.Pages.UserProfile { diff --git a/ZicMoove/ZicMoove/Pages/UserProfile/DashboardPage.xaml.cs b/ZicMoove/ZicMoove/Pages/UserProfile/DashboardPage.xaml.cs index f2cbdcfc..2b827eee 100644 --- a/ZicMoove/ZicMoove/Pages/UserProfile/DashboardPage.xaml.cs +++ b/ZicMoove/ZicMoove/Pages/UserProfile/DashboardPage.xaml.cs @@ -7,6 +7,7 @@ namespace ZicMoove.Pages.UserProfile using Data; using Helpers; using Newtonsoft.Json.Linq; + using Settings; using System.Linq; using System.Net.Http; using ViewModels.UserProfile; diff --git a/ZicMoove/ZicMoove/Pages/UserProfile/UserFiles.xaml.cs b/ZicMoove/ZicMoove/Pages/UserProfile/UserFiles.xaml.cs index 0b544490..e6aec70e 100644 --- a/ZicMoove/ZicMoove/Pages/UserProfile/UserFiles.xaml.cs +++ b/ZicMoove/ZicMoove/Pages/UserProfile/UserFiles.xaml.cs @@ -5,6 +5,7 @@ namespace ZicMoove.Pages.UserProfile using ViewModels.UserProfile; using Data; using System.Windows.Input; + using Settings; public partial class UserFiles : ContentPage { diff --git a/ZicMoove/ZicMoove/ViewModels/Messaging/ChatViewModel.cs b/ZicMoove/ZicMoove/ViewModels/Messaging/ChatViewModel.cs index 8acbcde5..a2336c3b 100644 --- a/ZicMoove/ZicMoove/ViewModels/Messaging/ChatViewModel.cs +++ b/ZicMoove/ZicMoove/ViewModels/Messaging/ChatViewModel.cs @@ -9,6 +9,7 @@ namespace ZicMoove.ViewModels.Messaging using Data; using Model.Social.Chat; using Model.Social.Messaging; + using Settings; public class ChatViewModel: ViewModel { diff --git a/ZicMoove/ZicMoove/ViewModels/UserProfile/UserProfileViewModel.cs b/ZicMoove/ZicMoove/ViewModels/UserProfile/UserProfileViewModel.cs index d69b2d73..7cb81eeb 100644 --- a/ZicMoove/ZicMoove/ViewModels/UserProfile/UserProfileViewModel.cs +++ b/ZicMoove/ZicMoove/ViewModels/UserProfile/UserProfileViewModel.cs @@ -13,6 +13,7 @@ namespace ZicMoove.ViewModels.UserProfile using Helpers; using Model.Auth.Account; using Pages.UserProfile; + using Settings; public class UserProfileViewModel : ViewModel {