Fixes the build
This commit is contained in:
parent
4facc560b8
commit
b7a5264a18
19 changed files with 19 additions and 0 deletions
|
|
@ -47,6 +47,7 @@ namespace ZicMoove.Droid
|
||||||
using Interfaces;
|
using Interfaces;
|
||||||
using Model.Auth.Account;
|
using Model.Auth.Account;
|
||||||
using static Android.Manifest;
|
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)]
|
[Activity(Name = "fr.pschneider.bas.MainActivity", Label = "ZicMoove", Theme = "@style/MainTheme", Icon = "@drawable/icon", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
|
||||||
public class MainActivity :
|
public class MainActivity :
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,7 @@ using ZicMoove.Model.Social;
|
||||||
using ZicMoove.Model;
|
using ZicMoove.Model;
|
||||||
using ZicMoove.Model.Workflow;
|
using ZicMoove.Model.Workflow;
|
||||||
using ZicMoove.Data;
|
using ZicMoove.Data;
|
||||||
|
using ZicMoove.Settings;
|
||||||
|
|
||||||
namespace ZicMoove.Droid.Services.GCMHandlers
|
namespace ZicMoove.Droid.Services.GCMHandlers
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ using Android.Gms.Gcm;
|
||||||
using Android.Gms.Gcm.Iid;
|
using Android.Gms.Gcm.Iid;
|
||||||
using Android.OS;
|
using Android.OS;
|
||||||
using Android;
|
using Android;
|
||||||
|
using ZicMoove.Settings;
|
||||||
|
|
||||||
namespace ZicMoove.Droid
|
namespace ZicMoove.Droid
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ using Android.OS;
|
||||||
using Android.Content;
|
using Android.Content;
|
||||||
using Android.Util;
|
using Android.Util;
|
||||||
using Android.Widget;
|
using Android.Widget;
|
||||||
|
using ZicMoove.Settings;
|
||||||
|
|
||||||
namespace ZicMoove.Droid
|
namespace ZicMoove.Droid
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,7 @@ namespace ZicMoove
|
||||||
using Pages.Chat;
|
using Pages.Chat;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Model.Social;
|
using Model.Social;
|
||||||
|
using Settings;
|
||||||
|
|
||||||
public partial class App : Application // superclass new in 1.3
|
public partial class App : Application // superclass new in 1.3
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ namespace ZicMoove.Data
|
||||||
using Helpers;
|
using Helpers;
|
||||||
using Model.Workflow;
|
using Model.Workflow;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
using Settings;
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Collections.ObjectModel;
|
using System.Collections.ObjectModel;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using ZicMoove.Settings;
|
||||||
|
|
||||||
namespace ZicMoove.Data
|
namespace ZicMoove.Data
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ namespace ZicMoove.Data.NonCrUD
|
||||||
{
|
{
|
||||||
using Helpers;
|
using Helpers;
|
||||||
using Model.FileSystem;
|
using Model.FileSystem;
|
||||||
|
using Settings;
|
||||||
|
|
||||||
public class RemoteFilesEntity : RemoteEntity<UserDirectoryInfo, FileAddress>
|
public class RemoteFilesEntity : RemoteEntity<UserDirectoryInfo, FileAddress>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ using System.Net;
|
||||||
namespace ZicMoove.Data
|
namespace ZicMoove.Data
|
||||||
{
|
{
|
||||||
using Helpers;
|
using Helpers;
|
||||||
|
using Settings;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Web;
|
using System.Web;
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ namespace ZicMoove.Helpers
|
||||||
{
|
{
|
||||||
using Data.NonCrUD;
|
using Data.NonCrUD;
|
||||||
using Model.FileSystem;
|
using Model.FileSystem;
|
||||||
|
using Settings;
|
||||||
|
|
||||||
public static class UserHelpers
|
public static class UserHelpers
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ using Xamarin.Forms;
|
||||||
namespace ZicMoove.Pages.Chat
|
namespace ZicMoove.Pages.Chat
|
||||||
{
|
{
|
||||||
using Data;
|
using Data;
|
||||||
|
using Settings;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using ViewModels.Messaging;
|
using ViewModels.Messaging;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ namespace ZicMoove.Pages
|
||||||
using EstimatePages;
|
using EstimatePages;
|
||||||
using Model.Social;
|
using Model.Social;
|
||||||
using Model.Workflow;
|
using Model.Workflow;
|
||||||
|
using Settings;
|
||||||
using ViewModels.EstimateAndBilling;
|
using ViewModels.EstimateAndBilling;
|
||||||
|
|
||||||
public partial class BookQueryPage : ContentPage
|
public partial class BookQueryPage : ContentPage
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ namespace ZicMoove.Pages
|
||||||
using Data;
|
using Data;
|
||||||
using EstimatePages;
|
using EstimatePages;
|
||||||
using Model.Workflow;
|
using Model.Workflow;
|
||||||
|
using Settings;
|
||||||
using ViewModels.EstimateAndBilling;
|
using ViewModels.EstimateAndBilling;
|
||||||
using ViewModels.Signing;
|
using ViewModels.Signing;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ using Xamarin.Forms;
|
||||||
namespace ZicMoove.Pages.EstimatePages
|
namespace ZicMoove.Pages.EstimatePages
|
||||||
{
|
{
|
||||||
using Data;
|
using Data;
|
||||||
|
using Settings;
|
||||||
using ViewModels.EstimateAndBilling;
|
using ViewModels.EstimateAndBilling;
|
||||||
using ViewModels.Signing;
|
using ViewModels.Signing;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ using ZicMoove.Helpers;
|
||||||
using XLabs.Forms.Behaviors;
|
using XLabs.Forms.Behaviors;
|
||||||
using XLabs.Forms.Controls;
|
using XLabs.Forms.Controls;
|
||||||
using ZicMoove.Model.Auth.Account;
|
using ZicMoove.Model.Auth.Account;
|
||||||
|
using ZicMoove.Settings;
|
||||||
|
|
||||||
namespace ZicMoove.Pages.UserProfile
|
namespace ZicMoove.Pages.UserProfile
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ namespace ZicMoove.Pages.UserProfile
|
||||||
using Data;
|
using Data;
|
||||||
using Helpers;
|
using Helpers;
|
||||||
using Newtonsoft.Json.Linq;
|
using Newtonsoft.Json.Linq;
|
||||||
|
using Settings;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using ViewModels.UserProfile;
|
using ViewModels.UserProfile;
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ namespace ZicMoove.Pages.UserProfile
|
||||||
using ViewModels.UserProfile;
|
using ViewModels.UserProfile;
|
||||||
using Data;
|
using Data;
|
||||||
using System.Windows.Input;
|
using System.Windows.Input;
|
||||||
|
using Settings;
|
||||||
|
|
||||||
public partial class UserFiles : ContentPage
|
public partial class UserFiles : ContentPage
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ namespace ZicMoove.ViewModels.Messaging
|
||||||
using Data;
|
using Data;
|
||||||
using Model.Social.Chat;
|
using Model.Social.Chat;
|
||||||
using Model.Social.Messaging;
|
using Model.Social.Messaging;
|
||||||
|
using Settings;
|
||||||
|
|
||||||
public class ChatViewModel: ViewModel
|
public class ChatViewModel: ViewModel
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@ namespace ZicMoove.ViewModels.UserProfile
|
||||||
using Helpers;
|
using Helpers;
|
||||||
using Model.Auth.Account;
|
using Model.Auth.Account;
|
||||||
using Pages.UserProfile;
|
using Pages.UserProfile;
|
||||||
|
using Settings;
|
||||||
|
|
||||||
public class UserProfileViewModel : ViewModel
|
public class UserProfileViewModel : ViewModel
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue