├── .gitattributes
├── .gitignore
├── .gitmodules
├── .nuget
└── nuget.exe
├── EmployeeDirectory
├── Data
│ ├── XamarinDirectory.csv
│ └── XamarinFavorites.xml
├── Dependencies
│ ├── Novell.Directory.Ldap
│ │ ├── Novell.Directory.Ldap.Android.dll
│ │ ├── Novell.Directory.Ldap.dll
│ │ └── Novell.Directory.Ldap.iOS.dll
│ └── winphone-7.1
│ │ ├── AsyncCtpLibrary_Phone.dll
│ │ └── Microsoft.Phone.Controls.Toolkit.dll
├── EmployeeDirectory.Android
│ ├── AndroidImageDownloader.cs
│ ├── Application.cs
│ ├── Assets
│ │ └── AboutAssets.txt
│ ├── BaseActivity.cs
│ ├── EmployeeDirectory.Android.csproj
│ ├── LoginActivity.cs
│ ├── MainActivity.cs
│ ├── PeopleGroupsAdapter.cs
│ ├── PeopleGroupsListView.cs
│ ├── PersonActivity.cs
│ ├── PersonAdapter.cs
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── AboutResources.txt
│ │ ├── Color
│ │ │ └── disabledText.xml
│ │ ├── Resource.designer.cs
│ │ ├── drawable-hdpi
│ │ │ ├── Icon.png
│ │ │ ├── Placeholder.jpg
│ │ │ ├── XamarinTitle.png
│ │ │ ├── accept.9.png
│ │ │ ├── actionbar.png
│ │ │ ├── btn_star_off_normal_holo_dark.png
│ │ │ ├── btn_star_on_normal_holo_light.png
│ │ │ ├── ic_btn_search.png
│ │ │ ├── ic_menu_search.png
│ │ │ ├── ic_menu_search_holo_dark.png
│ │ │ ├── ic_menu_search_holo_light.png
│ │ │ ├── ic_menu_star.png
│ │ │ ├── ic_search.png
│ │ │ ├── ic_search_api_holo_light.png
│ │ │ ├── loginbox.9.png
│ │ │ └── questionmark.png
│ │ ├── drawable-mdpi
│ │ │ ├── Icon.png
│ │ │ ├── Placeholder.jpg
│ │ │ ├── XamarinTitle.png
│ │ │ ├── actionbar.png
│ │ │ ├── btn_rating_star_off_normal_holo_light.png
│ │ │ ├── btn_rating_star_on_normal_holo_light.png
│ │ │ ├── ic_btn_search.png
│ │ │ ├── ic_menu_search.png
│ │ │ ├── ic_menu_search_holo_dark.png
│ │ │ ├── ic_menu_search_holo_light.png
│ │ │ ├── ic_menu_star.png
│ │ │ ├── ic_search.png
│ │ │ ├── ic_search_api_holo_light.png
│ │ │ ├── loginbox.9.png
│ │ │ └── questionmark.png
│ │ ├── drawable-xhdpi
│ │ │ ├── Icon.png
│ │ │ ├── XamarinTitle.png
│ │ │ ├── accept.9.png
│ │ │ ├── actionbar.png
│ │ │ ├── btn_star_off_normal_holo_light.png
│ │ │ ├── btn_star_on_normal_holo_light.png
│ │ │ ├── ic_btn_search.png
│ │ │ ├── ic_menu_search.png
│ │ │ ├── ic_menu_search_holo_dark.png
│ │ │ ├── ic_menu_search_holo_light.png
│ │ │ ├── ic_menu_star.png
│ │ │ ├── ic_search.png
│ │ │ ├── ic_search_api_holo_light.png
│ │ │ └── loginbox.9.png
│ │ ├── drawable
│ │ │ ├── login_button.xml
│ │ │ └── twitter.png
│ │ ├── layout
│ │ │ ├── EmailPropertyListItem.axml
│ │ │ ├── GroupHeaderListItem.axml
│ │ │ ├── Login.axml
│ │ │ ├── MainActivity.axml
│ │ │ ├── PersonActivity.axml
│ │ │ ├── PersonListItem.axml
│ │ │ ├── PhonePropertyListItem.axml
│ │ │ ├── PropertyListItem.axml
│ │ │ ├── SearchActivity.axml
│ │ │ ├── SectionHeader.axml
│ │ │ ├── TwitterPropertyListItem.axml
│ │ │ └── UrlPropertyListItem.axml
│ │ ├── menu
│ │ │ ├── AppActivityOptionsMenu.xml
│ │ │ └── PersonActivityOptionsMenu.xml
│ │ ├── values
│ │ │ ├── Strings.xml
│ │ │ ├── colors.xml
│ │ │ └── styles.xml
│ │ └── xml
│ │ │ └── searchable.xml
│ └── SearchActivity.cs
├── EmployeeDirectory.Shared
│ ├── Data
│ │ ├── IFavoritesRepository.cs
│ │ ├── Person.cs
│ │ ├── PropertyAttribute.cs
│ │ ├── Search.cs
│ │ ├── SearchProperty.cs
│ │ └── XmlFavoritesRepository.cs
│ ├── EmployeeDirectory.Shared.projitems
│ ├── EmployeeDirectory.Shared.shproj
│ ├── Filter.cs
│ ├── IDirectoryService.cs
│ ├── LdapDirectoryService.cs
│ ├── MemoryDirectoryService.cs
│ ├── Utilities
│ │ ├── CsvReader.cs
│ │ ├── Gravatar.cs
│ │ ├── ImageDownloader.cs
│ │ └── ThrottledHttp.cs
│ └── ViewModel
│ │ ├── ErrorEventArgs.cs
│ │ ├── FavoritesViewModel.cs
│ │ ├── LoginViewModel.cs
│ │ ├── PeopleGroup.cs
│ │ ├── PersonViewModel.cs
│ │ ├── SearchViewModel.cs
│ │ └── ViewModelBase.cs
├── EmployeeDirectory.VisualStudio.sln
├── EmployeeDirectory.WinPhone
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── ApplicationIcon.png
│ ├── Background.png
│ ├── Dependencies
│ │ ├── MD5.cs
│ │ └── Semaphore.cs
│ ├── EmployeeDirectory.WinPhone.csproj
│ ├── Images
│ │ ├── appbar.favs.addto.rest.png
│ │ ├── appbar.favs.removefrom.rest.png
│ │ ├── appbar.favs.rest.png
│ │ ├── appbar.feature.search.rest.png
│ │ └── appbar.pin.rest.png
│ ├── LoginPage.xaml
│ ├── LoginPage.xaml.cs
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── PersonPage.xaml
│ ├── PersonPage.xaml.cs
│ ├── Properties
│ │ ├── AppManifest.xml
│ │ ├── AssemblyInfo.cs
│ │ └── WMAppManifest.xml
│ ├── Resources
│ │ └── search.rest.png
│ ├── SearchPage.xaml
│ ├── SearchPage.xaml.cs
│ ├── SplashScreenImage.jpg
│ └── Utilities
│ │ └── ImageUtilties.cs
├── EmployeeDirectory.Xamarin.sln
├── Example LDAP Servers.txt
└── GettingStarted.md
├── FieldService
├── .gitattributes
├── .gitignore
├── Data
│ ├── contract.pdf
│ ├── sla.pdf
│ ├── techspecs.pdf
│ └── valuableinformation.pdf
├── Dependencies
│ ├── NUnit
│ │ ├── nunit.framework.dll
│ │ ├── nunit.framework.xml
│ │ ├── nunit.mocks.dll
│ │ └── pnunit.framework.dll
│ ├── SignatureView
│ │ └── Android
│ │ │ └── SignatureView.Android.dll
│ ├── WriteableBitmapEx
│ │ ├── WriteableBitmapEx.WinRT.dll
│ │ ├── WriteableBitmapEx.WinRT.pdb
│ │ ├── WriteableBitmapEx.WinRT.pri
│ │ └── WriteableBitmapEx.WinRT.xml
│ ├── Xamarin.Mobile
│ │ ├── Android
│ │ │ ├── Xamarin.Mobile.dll
│ │ │ └── Xamarin.Mobile.xml
│ │ ├── WinRT
│ │ │ ├── Xamarin.Mobile.dll
│ │ │ └── Xamarin.Mobile.xml
│ │ └── iOS
│ │ │ ├── Xamarin.Mobile.dll
│ │ │ └── Xamarin.Mobile.xml
│ └── sqlite
│ │ ├── WinRT
│ │ ├── ARM
│ │ │ └── sqlite3.dll
│ │ ├── x64
│ │ │ └── sqlite3.dll
│ │ └── x86
│ │ │ └── sqlite3.dll
│ │ └── Windows
│ │ ├── sqlite3.def
│ │ └── sqlite3.dll
├── FieldService.Android
│ ├── Activities
│ │ ├── AssignmentTabActivity.cs
│ │ ├── AssignmentsActivity.cs
│ │ ├── BaseActivity.cs
│ │ ├── LoginActivity.cs
│ │ ├── MapFragmentActivity.cs
│ │ ├── MapViewActivity.cs
│ │ ├── SummaryActivity.cs
│ │ └── SummaryHistoryActivity.cs
│ ├── Adapters
│ │ ├── AssignmentsAdapter.cs
│ │ ├── DocumentsAdapter.cs
│ │ ├── ExpensesAdapter.cs
│ │ ├── HistoryListAdapter.cs
│ │ ├── ItemsAdapter.cs
│ │ ├── ItemsSearchAdapter.cs
│ │ ├── LaborHoursAdapter.cs
│ │ ├── LaborTypeSpinnerAdapter.cs
│ │ ├── NavigationAdapter.cs
│ │ ├── PhotosAdapter.cs
│ │ └── SpinnerAdapter.cs
│ ├── Application.cs
│ ├── Assets
│ │ └── AboutAssets.txt
│ ├── Dialogs
│ │ ├── AddLaborDialog.cs
│ │ ├── BaseDialog.cs
│ │ ├── ExpenseDialog.cs
│ │ ├── ItemsDialog.cs
│ │ ├── PhotoDialog.cs
│ │ └── SignatureDialog.cs
│ ├── FieldService.Android.csproj
│ ├── Fragments
│ │ ├── ConfirmationFragment.cs
│ │ ├── DocumentFragment.cs
│ │ ├── ExpenseFragment.cs
│ │ ├── HistoryFragment.cs
│ │ ├── ItemFragment.cs
│ │ ├── LaborHourFragment.cs
│ │ ├── MapFragment.cs
│ │ ├── NavigationFragment.cs
│ │ └── SummaryFragment.cs
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── README.md
│ ├── Resources
│ │ ├── AboutResources.txt
│ │ ├── Color
│ │ │ ├── disabledText.xml
│ │ │ └── radio_selector_color.xml
│ │ ├── Drawable-hdpi
│ │ │ ├── AcceptedAssignmentIcon.png
│ │ │ ├── ActiveAssignmentIcon.png
│ │ │ ├── EnrouteImage.png
│ │ │ ├── HoldImage.png
│ │ │ ├── Icon.png
│ │ │ ├── ItemPopupDivider.png
│ │ │ ├── LaborHoursDivider.png
│ │ │ ├── MapIcon.png
│ │ │ ├── MapOverlayDirections.png
│ │ │ ├── MapOverlayDirectionsDown.png
│ │ │ ├── MapOverlayDivider.png
│ │ │ ├── MapOverlayIcon.png
│ │ │ ├── MapOverlayIconDown.png
│ │ │ ├── NewAssignmentIcon.png
│ │ │ ├── NextButton.png
│ │ │ ├── PhoneIcon.png
│ │ │ ├── PreviousButton.png
│ │ │ ├── SearchIcon.png
│ │ │ ├── SelectedItem.png
│ │ │ ├── SummaryPause.png
│ │ │ ├── SummaryRecord.png
│ │ │ ├── TimerPause.png
│ │ │ ├── TimerRecord.png
│ │ │ ├── TrashCanIcon.png
│ │ │ ├── UpLaborHours.png
│ │ │ ├── XamarinTitle.png
│ │ │ ├── accept.9.png
│ │ │ ├── actionbar.png
│ │ │ ├── back_button.png
│ │ │ ├── bottomSearchBar.png
│ │ │ ├── cameraIcon.png
│ │ │ ├── clearIcon.png
│ │ │ ├── clearIconDown.png
│ │ │ ├── darkPhoneIcon.png
│ │ │ ├── decline.9.png
│ │ │ ├── documentIcon.png
│ │ │ ├── downlaborhours.png
│ │ │ ├── laborHoursBottom.png
│ │ │ ├── labordescriptionbottom.png
│ │ │ ├── loginbox.9.png
│ │ │ ├── navigationIcon.png
│ │ │ ├── questionmark.png
│ │ │ ├── roundedblack.png
│ │ │ ├── triangleblue.9.png
│ │ │ ├── triangledark.9.png
│ │ │ ├── trianglegrey.9.png
│ │ │ └── trianglewhite.9.png
│ │ ├── Drawable-mdpi
│ │ │ ├── AcceptedAssignmentIcon.png
│ │ │ ├── ActiveAssignmentIcon.png
│ │ │ ├── EnrouteImage.png
│ │ │ ├── HoldImage.png
│ │ │ ├── Icon.png
│ │ │ ├── ItemPopupDivider.png
│ │ │ ├── LaborHoursDivider.png
│ │ │ ├── MapIcon.png
│ │ │ ├── MapOverlayDirections.png
│ │ │ ├── MapOverlayDirectionsDown.png
│ │ │ ├── MapOverlayDivider.png
│ │ │ ├── MapOverlayIcon.png
│ │ │ ├── MapOverlayIconDown.png
│ │ │ ├── NewAssignmentIcon.png
│ │ │ ├── NextButton.png
│ │ │ ├── PhoneIcon.png
│ │ │ ├── PreviousButton.png
│ │ │ ├── SearchIcon.png
│ │ │ ├── SelectedItem.png
│ │ │ ├── SummaryPause.png
│ │ │ ├── SummaryRecord.png
│ │ │ ├── TimerPause.png
│ │ │ ├── TimerRecord.png
│ │ │ ├── TrashCanIcon.png
│ │ │ ├── UpLaborHours.png
│ │ │ ├── XamarinTitle.png
│ │ │ ├── accept.9.png
│ │ │ ├── actionbar.png
│ │ │ ├── back_button.png
│ │ │ ├── bottomSearchBar.png
│ │ │ ├── cameraIcon.png
│ │ │ ├── clearIcon.png
│ │ │ ├── clearIconDown.png
│ │ │ ├── darkPhoneIcon.png
│ │ │ ├── decline.9.png
│ │ │ ├── documentIcon.png
│ │ │ ├── downlaborhours.png
│ │ │ ├── laborHoursBottom.png
│ │ │ ├── labordescriptionbottom.png
│ │ │ ├── loginbox.9.png
│ │ │ ├── navigationIcon.png
│ │ │ ├── questionmark.png
│ │ │ ├── roundedblack.png
│ │ │ ├── triangleblue.9.png
│ │ │ ├── triangledark.9.png
│ │ │ ├── trianglegrey.9.png
│ │ │ └── trianglewhite.9.png
│ │ ├── Drawable-xhdpi
│ │ │ ├── AcceptedAssignmentIcon.png
│ │ │ ├── ActiveAssignmentIcon.png
│ │ │ ├── EnrouteImage.png
│ │ │ ├── HoldImage.png
│ │ │ ├── Icon.png
│ │ │ ├── ItemPopupDivider.png
│ │ │ ├── LaborHoursDivider.png
│ │ │ ├── MapIcon.png
│ │ │ ├── MapOverlayDirections.png
│ │ │ ├── MapOverlayDirectionsDown.png
│ │ │ ├── MapOverlayDivider.png
│ │ │ ├── MapOverlayIcon.png
│ │ │ ├── MapOverlayIconDown.png
│ │ │ ├── NewAssignmentIcon.png
│ │ │ ├── NextButton.png
│ │ │ ├── PhoneIcon.png
│ │ │ ├── PreviousButton.png
│ │ │ ├── SearchIcon.png
│ │ │ ├── SelectedItem.png
│ │ │ ├── SummaryPause.png
│ │ │ ├── SummaryRecord.png
│ │ │ ├── TimerPause.png
│ │ │ ├── TimerRecord.png
│ │ │ ├── TrashCanIcon.png
│ │ │ ├── UpLaborHours.png
│ │ │ ├── XamarinTitle.png
│ │ │ ├── accept.9.png
│ │ │ ├── actionbar.png
│ │ │ ├── back_button.png
│ │ │ ├── bottomSearchBar.png
│ │ │ ├── cameraIcon.png
│ │ │ ├── clearIcon.png
│ │ │ ├── clearIconDown.png
│ │ │ ├── darkPhoneIcon.png
│ │ │ ├── decline.9.png
│ │ │ ├── documentIcon.png
│ │ │ ├── downlaborhours.png
│ │ │ ├── laborHoursBottom.png
│ │ │ ├── labordescriptionbottom.png
│ │ │ ├── loginbox.9.png
│ │ │ ├── navigationIcon.png
│ │ │ ├── roundedblack.png
│ │ │ ├── triangleblue.9.png
│ │ │ ├── triangledark.9.png
│ │ │ ├── trianglegrey.9.png
│ │ │ └── trianglewhite.9.png
│ │ ├── Drawable
│ │ │ ├── accept_assignment.xml
│ │ │ ├── action_bar_back.xml
│ │ │ ├── active_assignment_selector.xml
│ │ │ ├── assignment_list_selector.xml
│ │ │ ├── border.xml
│ │ │ ├── cancel_button.xml
│ │ │ ├── clear_search_button.xml
│ │ │ ├── decline_assignment.xml
│ │ │ ├── get_directions_button.xml
│ │ │ ├── items_selector.xml
│ │ │ ├── login_button.xml
│ │ │ ├── mapOverlay.xml
│ │ │ ├── navigation_selector.xml
│ │ │ ├── smallBlueRectangle.xml
│ │ │ ├── summary_timer.xml
│ │ │ ├── tab_selected.xml
│ │ │ ├── tab_selector.xml
│ │ │ ├── tab_unselected.xml
│ │ │ └── timer_selector.xml
│ │ ├── Layout-land
│ │ │ ├── AssignmentItemLayout.axml
│ │ │ ├── Assignments.axml
│ │ │ ├── AssignmentsLayout.axml
│ │ │ ├── ConfirmationsLayout.axml
│ │ │ ├── HistoryFragmentLayout.axml
│ │ │ ├── HistoryItemLayout.axml
│ │ │ └── SummaryFragmentLayout.axml
│ │ ├── Layout-sw720dp-land
│ │ │ ├── AssignmentItemLayout.axml
│ │ │ ├── AssignmentsLayout.axml
│ │ │ ├── ConfirmationsLayout.axml
│ │ │ ├── HistoryItemLayout.axml
│ │ │ └── SummaryFragmentLayout.axml
│ │ ├── Layout-sw720dp-port
│ │ │ ├── AssignmentItemLayout.axml
│ │ │ ├── AssignmentsLayout.axml
│ │ │ ├── ConfirmationsLayout.axml
│ │ │ ├── HistoryItemLayout.axml
│ │ │ └── SummaryFragmentLayout.axml
│ │ ├── Layout-sw720dp
│ │ │ ├── AddExpensePopUpLayout.axml
│ │ │ ├── AddLaborPopUpLayout.axml
│ │ │ ├── AddPhotoPopUpLayout.axml
│ │ │ ├── AddSignatureLayout.axml
│ │ │ ├── AssignmentHistoryLayout.axml
│ │ │ ├── AssignmentsTabsLayout.axml
│ │ │ ├── DocumentFragmentLayout.axml
│ │ │ ├── DocumentListItemLayout.axml
│ │ │ ├── ExpenseListItemLayout.axml
│ │ │ ├── ExpensesFragmentLayout.axml
│ │ │ ├── HistoryFragmentLayout.axml
│ │ │ ├── HistoryTabs.axml
│ │ │ ├── ItemLayout.axml
│ │ │ ├── ItemSearchListItemLayout.axml
│ │ │ ├── ItemsFragmentLayout.axml
│ │ │ ├── ItemsPopUpLayout.axml
│ │ │ ├── LaborHoursLayout.axml
│ │ │ ├── LaborHoursListItemLayout.axml
│ │ │ ├── LoginLayout.axml
│ │ │ ├── MapFragmentLayout.axml
│ │ │ ├── MapOverlayLayout.axml
│ │ │ ├── MapViewLayout.axml
│ │ │ ├── NavigationLayout.axml
│ │ │ ├── NavigationListItemLayout.axml
│ │ │ ├── PhotoItemLayout.axml
│ │ │ ├── SimpleSpinnerItem.axml
│ │ │ └── SummaryLayout.axml
│ │ ├── Layout
│ │ │ ├── AddExpensePopUpLayout.axml
│ │ │ ├── AddLaborPopUpLayout.axml
│ │ │ ├── AddPhotoPopUpLayout.axml
│ │ │ ├── AddSignatureLayout.axml
│ │ │ ├── AssignmentHistoryLayout.axml
│ │ │ ├── AssignmentsLayout.axml
│ │ │ ├── AssignmentsTabsLayout.axml
│ │ │ ├── DocumentFragmentLayout.axml
│ │ │ ├── DocumentListItemLayout.axml
│ │ │ ├── DocumentListViewItemLayout.axml
│ │ │ ├── ExpenseListItemLayout.axml
│ │ │ ├── ExpensesFragmentLayout.axml
│ │ │ ├── ExpensesLayout.axml
│ │ │ ├── HistoryTabs.axml
│ │ │ ├── ItemLayout.axml
│ │ │ ├── ItemSearchListItem.axml
│ │ │ ├── ItemSearchListItemLayout.axml
│ │ │ ├── ItemsFragmentLayout.axml
│ │ │ ├── ItemsLayout.axml
│ │ │ ├── ItemsPopUpLayout.axml
│ │ │ ├── LaborHoursLayout.axml
│ │ │ ├── LaborHoursListItemLayout.axml
│ │ │ ├── LoginLayout.axml
│ │ │ ├── MapFragmentLayout.axml
│ │ │ ├── MapOverlayLayout.axml
│ │ │ ├── MapViewLayout.axml
│ │ │ ├── NavigationItemLayout.axml
│ │ │ ├── NavigationLayout.axml
│ │ │ ├── NavigationListItemLayout.axml
│ │ │ ├── PhotoItemLayout.axml
│ │ │ ├── SimpleSpinnerItem.axml
│ │ │ └── SummaryLayout.axml
│ │ ├── Menu
│ │ │ ├── FragmentNavigationMenu.xml
│ │ │ └── SummaryMenu.xml
│ │ ├── Values
│ │ │ ├── Colors.xml
│ │ │ ├── Strings.xml
│ │ │ └── Styles.xml
│ │ └── layout-port
│ │ │ ├── AssignmentItemLayout.axml
│ │ │ ├── AssignmentsLayout.axml
│ │ │ ├── ConfirmationsLayout.axml
│ │ │ ├── HistoryFragmentLayout.axml
│ │ │ ├── HistoryItemLayout.axml
│ │ │ └── SummaryFragmentLayout.axml
│ ├── Utilities
│ │ ├── AndroidExtensions.cs
│ │ ├── Constants.cs
│ │ ├── EventArgs(T).cs
│ │ ├── MapOverlayItem.cs
│ │ └── SynchronizeInvoke.cs
│ └── packages.config
├── FieldService.Shared
│ ├── Catalog.cs
│ ├── Data
│ │ ├── Assignment.cs
│ │ ├── AssignmentHistory.cs
│ │ ├── AssignmentItem.cs
│ │ ├── Database.cs
│ │ ├── Document.cs
│ │ ├── Enumerations.cs
│ │ ├── Expense.cs
│ │ ├── ExpensePhoto.cs
│ │ ├── Item.cs
│ │ ├── Labor.cs
│ │ ├── Photo.cs
│ │ ├── PropertyChangedBase.cs
│ │ ├── SampleAssignmentService.cs
│ │ ├── SampleLoginService.cs
│ │ ├── Signature.cs
│ │ ├── TestData.cs
│ │ └── TimerEntry.cs
│ ├── FieldService.Shared.projitems
│ ├── FieldService.Shared.shproj
│ ├── IAssignmentService.cs
│ ├── ILoginService.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ServiceRegistrar.cs
│ ├── Utilities
│ │ ├── DataExtensions.cs
│ │ ├── ServiceContainer.cs
│ │ └── TaskExtensions.cs
│ └── ViewModels
│ │ ├── AssignmentViewModel.cs
│ │ ├── DocumentViewModel.cs
│ │ ├── ExpenseViewModel.cs
│ │ ├── HistoryViewModel.cs
│ │ ├── ItemViewModel.cs
│ │ ├── LaborViewModel.cs
│ │ ├── LoginViewModel.cs
│ │ ├── MenuViewModel.cs
│ │ ├── PhotoViewModel.cs
│ │ └── ViewModelBase.cs
├── FieldService.Tests
│ ├── Data
│ │ └── SampleAssignmentServiceTests.cs
│ ├── FieldService.Tests.csproj
│ ├── Mocks
│ │ ├── MockAssignmentService.cs
│ │ └── MockSynchronizeInvoke.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── ViewModels
│ │ ├── AssignmentViewModelTests.cs
│ │ ├── DocumentViewModelTests.cs
│ │ ├── ExpenseViewModelTests.cs
│ │ ├── HistoryViewModelTests.cs
│ │ ├── ItemViewModelTests.cs
│ │ ├── LaborViewModelTests.cs
│ │ ├── LoginViewModelTests.cs
│ │ └── PhotoViewModelTests.cs
├── FieldService.VisualStudio.sln
├── FieldService.WinRT
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Assets
│ │ ├── Logo.png
│ │ ├── SmallLogo.png
│ │ ├── SplashScreen.png
│ │ ├── StoreLogo.png
│ │ ├── WideLogo.png
│ │ ├── assignmenticon.png
│ │ ├── assignmenticonblue.png
│ │ ├── cameraicon.png
│ │ ├── completeicon.png
│ │ ├── confirmationicon.png
│ │ ├── darkcameraicon.png
│ │ ├── documenticon.png
│ │ ├── historyicon.png
│ │ ├── itemsicon.png
│ │ ├── map_triangle.png
│ │ ├── mapicon.png
│ │ ├── maplargeicon.png
│ │ ├── personicon.png
│ │ ├── phoneicon.png
│ │ ├── phoneiconlarge.png
│ │ ├── phoneiconlargeblue.png
│ │ ├── questionmark.png
│ │ ├── smoothbg.png
│ │ ├── smoothbg_blue.png
│ │ ├── snaplogo.png
│ │ ├── timericon.png
│ │ └── titlelogo.png
│ ├── Common
│ │ └── StandardStyles.xaml
│ ├── FieldService.WinRT.csproj
│ ├── FieldService.WinRT_TemporaryKey.pfx
│ ├── Package.appxmanifest
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── README.md
│ ├── SQLite.cs
│ ├── SQLiteAsync.cs
│ ├── SignatureBoxControl.pri
│ ├── Utilities
│ │ ├── BooleanToVisibilityConverter.cs
│ │ ├── Constants.cs
│ │ ├── DelegateCommand.cs
│ │ ├── DocumentSubheaderColorConverter.cs
│ │ ├── DocumentTypeToColorConverter.cs
│ │ ├── Helpers.cs
│ │ ├── PhotoToImageConverter.cs
│ │ ├── StatusToColorConverter.cs
│ │ └── Timer.cs
│ ├── ViewModels
│ │ ├── AssignmentViewModel.cs
│ │ ├── DocumentViewModel.cs
│ │ ├── ExpenseViewModel.cs
│ │ ├── HistoryViewModel.cs
│ │ ├── ItemViewModel.cs
│ │ ├── LaborViewModel.cs
│ │ ├── LoginViewModel.cs
│ │ └── PhotoViewModel.cs
│ ├── Views
│ │ ├── AddExpenseFlyoutPanel.xaml
│ │ ├── AddExpenseFlyoutPanel.xaml.cs
│ │ ├── AddItemFlyoutPanel.xaml
│ │ ├── AddItemFlyoutPanel.xaml.cs
│ │ ├── AddLaborFlyoutPanel.xaml
│ │ ├── AddLaborFlyoutPanel.xaml.cs
│ │ ├── AddSignatureFlyoutPanel.xaml
│ │ ├── AddSignatureFlyoutPanel.xaml.cs
│ │ ├── AssignmentControl.xaml
│ │ ├── AssignmentControl.xaml.cs
│ │ ├── AssignmentHistoryPage.xaml
│ │ ├── AssignmentHistoryPage.xaml.cs
│ │ ├── AssignmentMapPage.xaml
│ │ ├── AssignmentMapPage.xaml.cs
│ │ ├── AssignmentPage.xaml
│ │ ├── AssignmentPage.xaml.cs
│ │ ├── AssignmentsPage.xaml
│ │ ├── AssignmentsPage.xaml.cs
│ │ ├── ConfirmationsPage.xaml
│ │ ├── ConfirmationsPage.xaml.cs
│ │ ├── DocumentsPage.xaml
│ │ ├── DocumentsPage.xaml.cs
│ │ ├── ExpensesPage.xaml
│ │ ├── ExpensesPage.xaml.cs
│ │ ├── ImagesPage.xaml
│ │ ├── ImagesPage.xaml.cs
│ │ ├── ItemsPage.xaml
│ │ ├── ItemsPage.xaml.cs
│ │ ├── LaborPage.xaml
│ │ ├── LaborPage.xaml.cs
│ │ ├── LoginPage.xaml
│ │ ├── LoginPage.xaml.cs
│ │ ├── MapPage.xaml
│ │ ├── MapPage.xaml.cs
│ │ ├── MapPopup.xaml
│ │ ├── MapPopup.xaml.cs
│ │ ├── MapTile.xaml
│ │ ├── MapTile.xaml.cs
│ │ ├── SnapPage.xaml
│ │ └── SnapPage.xaml.cs
│ └── packages.config
├── FieldService.Xamarin.sln
├── FieldService.iOS
│ ├── AppDelegate.cs
│ ├── Controllers
│ │ ├── AddExpenseController.cs
│ │ ├── AddExpenseController.designer.cs
│ │ ├── AddItemController.cs
│ │ ├── AddItemController.designer.cs
│ │ ├── AddLaborController.cs
│ │ ├── AddLaborController.designer.cs
│ │ ├── AddPhotoController.cs
│ │ ├── AddPhotoController.designer.cs
│ │ ├── AssignmentDetailsController.cs
│ │ ├── AssignmentDetailsController.designer.cs
│ │ ├── AssignmentsController.cs
│ │ ├── AssignmentsController.designer.cs
│ │ ├── BaseController.cs
│ │ ├── BaseNavigationController.cs
│ │ ├── BaseNavigationController.designer.cs
│ │ ├── ConfirmationController.cs
│ │ ├── ConfirmationController.designer.cs
│ │ ├── DocumentController.cs
│ │ ├── DocumentController.designer.cs
│ │ ├── ExpenseController.cs
│ │ ├── ExpenseController.designer.cs
│ │ ├── HistoryController.cs
│ │ ├── HistoryController.designer.cs
│ │ ├── ItemsViewController.cs
│ │ ├── ItemsViewController.designer.cs
│ │ ├── LaborController.cs
│ │ ├── LaborController.designer.cs
│ │ ├── LoginController.cs
│ │ ├── LoginController.designer.cs
│ │ ├── MainMapController.cs
│ │ ├── MainMapController.designer.cs
│ │ ├── MapController.cs
│ │ ├── MenuController.cs
│ │ ├── MenuController.designer.cs
│ │ ├── SignatureController.cs
│ │ ├── SplitController.cs
│ │ ├── SplitController.designer.cs
│ │ ├── SummaryController.cs
│ │ ├── SummaryController.designer.cs
│ │ ├── TabController.cs
│ │ └── TabController.designer.cs
│ ├── Data
│ │ ├── contract.pdf
│ │ ├── sla.pdf
│ │ ├── techspecs.pdf
│ │ └── valuableinformation.pdf
│ ├── FieldService.iOS.csproj
│ ├── Images
│ │ ├── accept.png
│ │ ├── accept@2x.png
│ │ ├── addphoto.png
│ │ ├── addphoto@2x.png
│ │ ├── arrow_down.png
│ │ ├── arrow_down@2x.png
│ │ ├── arrow_up.png
│ │ ├── arrow_up@2x.png
│ │ ├── arrowwhite.png
│ │ ├── arrowwhite@2x.png
│ │ ├── assignmentactive.png
│ │ ├── assignmentactive@2x.png
│ │ ├── assignmentactiveblue.png
│ │ ├── assignmentactiveblue@2x.png
│ │ ├── assignmentblue.png
│ │ ├── assignmentblue@2x.png
│ │ ├── assignmentgrey.png
│ │ ├── assignmentgrey@2x.png
│ │ ├── backbutton.png
│ │ ├── backbutton@2x.png
│ │ ├── bg_left.png
│ │ ├── bg_left@2x.png
│ │ ├── bluebar.png
│ │ ├── bluebar@2x.png
│ │ ├── bluenavbutton.png
│ │ ├── bluenavbutton@2x.png
│ │ ├── buttondark.png
│ │ ├── buttondark@2x.png
│ │ ├── camera.png
│ │ ├── camera@2x.png
│ │ ├── complete.png
│ │ ├── complete@2x.png
│ │ ├── complete_inactive.png
│ │ ├── complete_inactive@2x.png
│ │ ├── decline.png
│ │ ├── decline@2x.png
│ │ ├── deletebutton.png
│ │ ├── deletebutton@2x.png
│ │ ├── dot.png
│ │ ├── dot@2x.png
│ │ ├── dropdown.png
│ │ ├── dropdown@2x.png
│ │ ├── iOS7
│ │ │ ├── complete.png
│ │ │ ├── complete@2x.png
│ │ │ ├── complete_inactive.png
│ │ │ ├── complete_inactive@2x.png
│ │ │ ├── dropdown.png
│ │ │ ├── dropdown@2x.png
│ │ │ ├── hexagons.png
│ │ │ ├── hexagons@2x.png
│ │ │ ├── icon_pdf.png
│ │ │ ├── icon_pdf@2x.png
│ │ │ ├── iconphone.png
│ │ │ ├── iconphone@2x.png
│ │ │ ├── iconsettings.png
│ │ │ ├── iconsettings@2x.png
│ │ │ ├── iconsignature.png
│ │ │ ├── iconsignature@2x.png
│ │ │ ├── image_placeholder.png
│ │ │ ├── image_placeholder@2x.png
│ │ │ ├── listicon.png
│ │ │ ├── listicon@2x.png
│ │ │ ├── listicon_selected.png
│ │ │ ├── listicon_selected@2x.png
│ │ │ ├── login_box.png
│ │ │ ├── login_box@2x.png
│ │ │ ├── login_btn.png
│ │ │ ├── login_btn@2x.png
│ │ │ ├── logo.png
│ │ │ ├── logo@2x.png
│ │ │ ├── map.png
│ │ │ ├── map@2x.png
│ │ │ ├── mapicon.png
│ │ │ ├── mapicon@2x.png
│ │ │ ├── mapicon_selected.png
│ │ │ ├── mapicon_selected@2x.png
│ │ │ ├── numberbox.png
│ │ │ ├── numberbox@2x.png
│ │ │ ├── numberbox_hollow.png
│ │ │ ├── numberbox_hollow@2x.png
│ │ │ ├── questionmark.png
│ │ │ ├── questionmark@2x.png
│ │ │ ├── record.png
│ │ │ ├── record@2x.png
│ │ │ ├── record_active.png
│ │ │ ├── record_active@2x.png
│ │ │ ├── timebox.png
│ │ │ └── timebox@2x.png
│ │ ├── icon_pdf.png
│ │ ├── icon_pdf@2x.png
│ │ ├── iconactive.png
│ │ ├── iconactive@2x.png
│ │ ├── iconcomplete.png
│ │ ├── iconcomplete@2x.png
│ │ ├── iconhold.png
│ │ ├── iconhold@2x.png
│ │ ├── iconphone.png
│ │ ├── iconphone@2x.png
│ │ ├── iconphone_dark.png
│ │ ├── iconphone_dark@2x.png
│ │ ├── iconsettings.png
│ │ ├── iconsettings@2x.png
│ │ ├── inlay.png
│ │ ├── inlay@2x.png
│ │ ├── leftlist_end.png
│ │ ├── leftlist_end@2x.png
│ │ ├── leftlist_end_active.png
│ │ ├── leftlist_end_active@2x.png
│ │ ├── leftlist_mid.png
│ │ ├── leftlist_mid@2x.png
│ │ ├── leftlist_mid_active.png
│ │ ├── leftlist_mid_active@2x.png
│ │ ├── leftlist_top.png
│ │ ├── leftlist_top@2x.png
│ │ ├── leftlist_top_active.png
│ │ ├── leftlist_top_active@2x.png
│ │ ├── linenpattern.png
│ │ ├── linenpattern@2x.png
│ │ ├── listicon.png
│ │ ├── listicon@2x.png
│ │ ├── login_box.png
│ │ ├── login_box@2x.png
│ │ ├── login_btn.png
│ │ ├── login_btn@2x.png
│ │ ├── login_textfield.png
│ │ ├── login_textfield@2x.png
│ │ ├── logo.png
│ │ ├── logo@2x.png
│ │ ├── map.png
│ │ ├── map@2x.png
│ │ ├── mapicon.png
│ │ ├── mapicon@2x.png
│ │ ├── modal.png
│ │ ├── modal@2x.png
│ │ ├── modal_inlay.png
│ │ ├── modal_inlay@2x.png
│ │ ├── numberbox.png
│ │ ├── numberbox@2x.png
│ │ ├── orangebar.png
│ │ ├── orangebar@2x.png
│ │ ├── orangenavbutton.png
│ │ ├── orangenavbutton@2x.png
│ │ ├── photoframe.png
│ │ ├── photoframe@2x.png
│ │ ├── questionmark.png
│ │ ├── questionmark@2x.png
│ │ ├── record.png
│ │ ├── record@2x.png
│ │ ├── record_active.png
│ │ ├── record_active@2x.png
│ │ ├── rightboxshadow.png
│ │ ├── rightboxshadow@2x.png
│ │ ├── row.png
│ │ ├── row@2x.png
│ │ ├── rowend.png
│ │ ├── rowend@2x.png
│ │ ├── rowpress.png
│ │ ├── rowpress@2x.png
│ │ ├── rowshadow.png
│ │ ├── rowshadow@2x.png
│ │ ├── shortrowpress.png
│ │ ├── shortrowpress@2x.png
│ │ ├── smallgreybtn.png
│ │ ├── smallgreybtn@2x.png
│ │ ├── timerbg.png
│ │ ├── timerbg@2x.png
│ │ ├── timerfield.png
│ │ ├── timerfield@2x.png
│ │ ├── toolbarshadow.png
│ │ ├── toolbarshadow@2x.png
│ │ ├── topnav.png
│ │ ├── topnav@2x.png
│ │ ├── topnavbtn.png
│ │ └── topnavbtn@2x.png
│ ├── Info.plist
│ ├── Main.cs
│ ├── MainStoryboard.storyboard
│ ├── Resources
│ │ ├── 100.png
│ │ ├── 144.png
│ │ ├── 29.png
│ │ ├── 50.png
│ │ ├── 58.png
│ │ ├── 72.png
│ │ ├── Default-Landscape.png
│ │ ├── Default-Landscape@2x.png
│ │ ├── Default-Portrait.png
│ │ └── Default-Portrait@2x.png
│ ├── Utilities
│ │ ├── ClrWrapper.cs
│ │ ├── ISearchSource.cs
│ │ ├── MenuEventArgs.cs
│ │ ├── SearchDisplay.cs
│ │ ├── SectionIndex.cs
│ │ ├── SynchronizeInvoke.cs
│ │ ├── Theme.cs
│ │ └── UIKitExtensions.cs
│ └── Views
│ │ ├── AssignmentCell.cs
│ │ ├── AssignmentCell.designer.cs
│ │ ├── AssignmentItemCell.cs
│ │ ├── AssignmentItemCell.designer.cs
│ │ ├── AssignmentStatusSheet.cs
│ │ ├── CompleteCell.cs
│ │ ├── CompleteCell.designer.cs
│ │ ├── DocumentCell.cs
│ │ ├── ExpenseCategorySheet.cs
│ │ ├── ExpenseCell.cs
│ │ ├── ExpenseCell.designer.cs
│ │ ├── HistoryCell.cs
│ │ ├── HistoryCell.designer.cs
│ │ ├── HoursField.cs
│ │ ├── LaborCell.cs
│ │ ├── LaborCell.designer.cs
│ │ ├── LaborTypeTextField.cs
│ │ ├── PhotoAlertSheet.cs
│ │ ├── PhotoCell.cs
│ │ ├── PhotoCell.designer.cs
│ │ ├── PlaceholderTextView.cs
│ │ ├── SignatureCell.cs
│ │ ├── SignatureCell.designer.cs
│ │ ├── StatusButton.cs
│ │ ├── StatusButton.designer.cs
│ │ ├── TextButton.cs
│ │ └── TextButton.designer.cs
└── FieldService
│ └── FieldService.ncrunchproject
├── README.md
├── Rakefile
├── build
├── build.fsx
└── tools
├── .gitignore
└── XamarinHelper.fsx
/.gitignore:
--------------------------------------------------------------------------------
1 | Thumbs.db
2 | .DS_Store
3 | *.userprefs
4 | *.user
5 | *.suo
6 | *.quicktest
7 | bin
8 | obj
9 | packages
10 | test-results
11 | Resource.Designer.cs
12 | [Cc]omponents
13 | FieldService/FieldService.WinRT/AppPackages
14 | FieldService/FieldService.WinRT/*.pfx
15 | FieldService/FieldService.WinRT/Package.StoreAssociation.xml
16 |
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "FieldService/Dependencies/sqlite-net"]
2 | path = FieldService/Dependencies/sqlite-net
3 | url = https://github.com/praeclarum/sqlite-net.git
4 |
--------------------------------------------------------------------------------
/.nuget/nuget.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/.nuget/nuget.exe
--------------------------------------------------------------------------------
/EmployeeDirectory/Dependencies/Novell.Directory.Ldap/Novell.Directory.Ldap.Android.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/Dependencies/Novell.Directory.Ldap/Novell.Directory.Ldap.Android.dll
--------------------------------------------------------------------------------
/EmployeeDirectory/Dependencies/Novell.Directory.Ldap/Novell.Directory.Ldap.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/Dependencies/Novell.Directory.Ldap/Novell.Directory.Ldap.dll
--------------------------------------------------------------------------------
/EmployeeDirectory/Dependencies/Novell.Directory.Ldap/Novell.Directory.Ldap.iOS.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/Dependencies/Novell.Directory.Ldap/Novell.Directory.Ldap.iOS.dll
--------------------------------------------------------------------------------
/EmployeeDirectory/Dependencies/winphone-7.1/AsyncCtpLibrary_Phone.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/Dependencies/winphone-7.1/AsyncCtpLibrary_Phone.dll
--------------------------------------------------------------------------------
/EmployeeDirectory/Dependencies/winphone-7.1/Microsoft.Phone.Controls.Toolkit.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/Dependencies/winphone-7.1/Microsoft.Phone.Controls.Toolkit.dll
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with you package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/Color/disabledText.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/Icon.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/Placeholder.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/Placeholder.jpg
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/XamarinTitle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/XamarinTitle.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/accept.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/accept.9.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/actionbar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/actionbar.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/btn_star_off_normal_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/btn_star_off_normal_holo_dark.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/btn_star_on_normal_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/btn_star_on_normal_holo_light.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_btn_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_btn_search.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_menu_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_menu_search.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_menu_search_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_menu_search_holo_dark.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_menu_search_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_menu_search_holo_light.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_menu_star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_menu_star.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_search.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/ic_search_api_holo_light.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/loginbox.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/loginbox.9.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/questionmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-hdpi/questionmark.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/Icon.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/Placeholder.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/Placeholder.jpg
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/XamarinTitle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/XamarinTitle.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/actionbar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/actionbar.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/btn_rating_star_off_normal_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/btn_rating_star_off_normal_holo_light.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/btn_rating_star_on_normal_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/btn_rating_star_on_normal_holo_light.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_btn_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_btn_search.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_menu_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_menu_search.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_menu_search_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_menu_search_holo_dark.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_menu_search_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_menu_search_holo_light.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_menu_star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_menu_star.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_search.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/ic_search_api_holo_light.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/loginbox.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/loginbox.9.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/questionmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-mdpi/questionmark.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/Icon.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/XamarinTitle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/XamarinTitle.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/accept.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/accept.9.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/actionbar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/actionbar.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/btn_star_off_normal_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/btn_star_off_normal_holo_light.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/btn_star_on_normal_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/btn_star_on_normal_holo_light.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_btn_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_btn_search.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_menu_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_menu_search.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_menu_search_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_menu_search_holo_dark.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_menu_search_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_menu_search_holo_light.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_menu_star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_menu_star.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_search.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/ic_search_api_holo_light.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/loginbox.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable-xhdpi/loginbox.9.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable/login_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable/twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.Android/Resources/drawable/twitter.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/layout/PersonActivity.axml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
17 |
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/menu/AppActivityOptionsMenu.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/menu/PersonActivityOptionsMenu.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/values/Strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Employees
4 |
5 | Search
6 | Favorites
7 |
8 | Search
9 | Find employee
10 |
11 | Favorite
12 |
13 | You do not have any favorites. Add them by searching for someone.
14 |
15 | Searching...
16 | No results
17 |
18 |
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #33B5E5
4 | #707070
5 |
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Android/Resources/xml/searchable.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.Shared/Data/SearchProperty.cs:
--------------------------------------------------------------------------------
1 | //
2 | // Copyright 2012, Xamarin Inc.
3 | //
4 | // Licensed under the Apache License, Version 2.0 (the "License");
5 | // you may not use this file except in compliance with the License.
6 | // You may obtain a copy of the License at
7 | //
8 | // http://www.apache.org/licenses/LICENSE-2.0
9 | //
10 | // Unless required by applicable law or agreed to in writing, software
11 | // distributed under the License is distributed on an "AS IS" BASIS,
12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | // See the License for the specific language governing permissions and
14 | // limitations under the License.
15 | //
16 | using System;
17 |
18 | namespace EmployeeDirectory
19 | {
20 | public enum SearchProperty {
21 | Name = 0,
22 | Title = 1,
23 | Department = 2,
24 | All = 3
25 | }
26 | }
27 |
28 |
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.WinPhone/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.WinPhone/ApplicationIcon.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.WinPhone/Background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.WinPhone/Background.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.WinPhone/Images/appbar.favs.addto.rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.WinPhone/Images/appbar.favs.addto.rest.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.WinPhone/Images/appbar.favs.removefrom.rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.WinPhone/Images/appbar.favs.removefrom.rest.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.WinPhone/Images/appbar.favs.rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.WinPhone/Images/appbar.favs.rest.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.WinPhone/Images/appbar.feature.search.rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.WinPhone/Images/appbar.feature.search.rest.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.WinPhone/Images/appbar.pin.rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.WinPhone/Images/appbar.pin.rest.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.WinPhone/Properties/AppManifest.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.WinPhone/Resources/search.rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.WinPhone/Resources/search.rest.png
--------------------------------------------------------------------------------
/EmployeeDirectory/EmployeeDirectory.WinPhone/SplashScreenImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/EmployeeDirectory/EmployeeDirectory.WinPhone/SplashScreenImage.jpg
--------------------------------------------------------------------------------
/EmployeeDirectory/GettingStarted.md:
--------------------------------------------------------------------------------
1 | ## Directory Services
2 |
3 | The app uses the interface `IDirectoryService` to get information from services.
4 |
5 | Two concrete implementations of that interface are provided:
6 |
7 | 1. `LdapDirectoryService` is able to talk through LDAP to
8 |
9 |
--------------------------------------------------------------------------------
/FieldService/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
4 | # Custom for Visual Studio
5 | *.cs diff=csharp
6 | *.sln merge=union
7 | *.csproj merge=union
8 | *.vbproj merge=union
9 | *.fsproj merge=union
10 | *.dbproj merge=union
11 |
12 | # Standard to msysgit
13 | *.doc diff=astextplain
14 | *.DOC diff=astextplain
15 | *.docx diff=astextplain
16 | *.DOCX diff=astextplain
17 | *.dot diff=astextplain
18 | *.DOT diff=astextplain
19 | *.pdf diff=astextplain
20 | *.PDF diff=astextplain
21 | *.rtf diff=astextplain
22 | *.RTF diff=astextplain
23 |
--------------------------------------------------------------------------------
/FieldService/.gitignore:
--------------------------------------------------------------------------------
1 | # Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
2 | bin
3 | obj
4 |
5 | #Visual Studio stuff
6 | *.suo
7 | *.user
8 | *.cache
9 |
10 | # mstest test results
11 | TestResults
--------------------------------------------------------------------------------
/FieldService/Data/contract.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Data/contract.pdf
--------------------------------------------------------------------------------
/FieldService/Data/sla.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Data/sla.pdf
--------------------------------------------------------------------------------
/FieldService/Data/techspecs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Data/techspecs.pdf
--------------------------------------------------------------------------------
/FieldService/Data/valuableinformation.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Data/valuableinformation.pdf
--------------------------------------------------------------------------------
/FieldService/Dependencies/NUnit/nunit.framework.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/NUnit/nunit.framework.dll
--------------------------------------------------------------------------------
/FieldService/Dependencies/NUnit/nunit.mocks.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/NUnit/nunit.mocks.dll
--------------------------------------------------------------------------------
/FieldService/Dependencies/NUnit/pnunit.framework.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/NUnit/pnunit.framework.dll
--------------------------------------------------------------------------------
/FieldService/Dependencies/SignatureView/Android/SignatureView.Android.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/SignatureView/Android/SignatureView.Android.dll
--------------------------------------------------------------------------------
/FieldService/Dependencies/WriteableBitmapEx/WriteableBitmapEx.WinRT.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/WriteableBitmapEx/WriteableBitmapEx.WinRT.dll
--------------------------------------------------------------------------------
/FieldService/Dependencies/WriteableBitmapEx/WriteableBitmapEx.WinRT.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/WriteableBitmapEx/WriteableBitmapEx.WinRT.pdb
--------------------------------------------------------------------------------
/FieldService/Dependencies/WriteableBitmapEx/WriteableBitmapEx.WinRT.pri:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/WriteableBitmapEx/WriteableBitmapEx.WinRT.pri
--------------------------------------------------------------------------------
/FieldService/Dependencies/Xamarin.Mobile/Android/Xamarin.Mobile.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/Xamarin.Mobile/Android/Xamarin.Mobile.dll
--------------------------------------------------------------------------------
/FieldService/Dependencies/Xamarin.Mobile/WinRT/Xamarin.Mobile.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/Xamarin.Mobile/WinRT/Xamarin.Mobile.dll
--------------------------------------------------------------------------------
/FieldService/Dependencies/Xamarin.Mobile/iOS/Xamarin.Mobile.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/Xamarin.Mobile/iOS/Xamarin.Mobile.dll
--------------------------------------------------------------------------------
/FieldService/Dependencies/sqlite/WinRT/ARM/sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/sqlite/WinRT/ARM/sqlite3.dll
--------------------------------------------------------------------------------
/FieldService/Dependencies/sqlite/WinRT/x64/sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/sqlite/WinRT/x64/sqlite3.dll
--------------------------------------------------------------------------------
/FieldService/Dependencies/sqlite/WinRT/x86/sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/sqlite/WinRT/x86/sqlite3.dll
--------------------------------------------------------------------------------
/FieldService/Dependencies/sqlite/Windows/sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/Dependencies/sqlite/Windows/sqlite3.dll
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with you package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 | using Android.App;
5 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/README.md:
--------------------------------------------------------------------------------
1 | # Field Service - Android
2 |
3 | We are using Google Maps API Key, documentation here: https://developers.google.com/maps/documentation/android/v1/maps-api-signup
4 |
5 | Instructions here: http://docs.xamarin.com/Android/Guides/Platform_Features/Maps_and_Location/Obtaining_a_Google_Maps_API_Key
6 |
7 | You will need a Google Maps API here: http://developer.android.com/sdk/installing/adding-packages.html
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Color/disabledText.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Color/radio_selector_color.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/AcceptedAssignmentIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/AcceptedAssignmentIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/ActiveAssignmentIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/ActiveAssignmentIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/EnrouteImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/EnrouteImage.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/HoldImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/HoldImage.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/Icon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/ItemPopupDivider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/ItemPopupDivider.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/LaborHoursDivider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/LaborHoursDivider.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/MapIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/MapIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/MapOverlayDirections.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/MapOverlayDirections.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/MapOverlayDirectionsDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/MapOverlayDirectionsDown.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/MapOverlayDivider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/MapOverlayDivider.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/MapOverlayIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/MapOverlayIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/MapOverlayIconDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/MapOverlayIconDown.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/NewAssignmentIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/NewAssignmentIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/NextButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/NextButton.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/PhoneIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/PhoneIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/PreviousButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/PreviousButton.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/SearchIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/SearchIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/SelectedItem.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/SelectedItem.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/SummaryPause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/SummaryPause.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/SummaryRecord.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/SummaryRecord.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/TimerPause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/TimerPause.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/TimerRecord.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/TimerRecord.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/TrashCanIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/TrashCanIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/UpLaborHours.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/UpLaborHours.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/XamarinTitle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/XamarinTitle.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/accept.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/accept.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/actionbar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/actionbar.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/back_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/back_button.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/bottomSearchBar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/bottomSearchBar.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/cameraIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/cameraIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/clearIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/clearIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/clearIconDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/clearIconDown.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/darkPhoneIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/darkPhoneIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/decline.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/decline.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/documentIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/documentIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/downlaborhours.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/downlaborhours.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/laborHoursBottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/laborHoursBottom.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/labordescriptionbottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/labordescriptionbottom.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/loginbox.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/loginbox.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/navigationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/navigationIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/questionmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/questionmark.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/roundedblack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/roundedblack.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/triangleblue.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/triangleblue.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/triangledark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/triangledark.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/trianglegrey.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/trianglegrey.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-hdpi/trianglewhite.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-hdpi/trianglewhite.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/AcceptedAssignmentIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/AcceptedAssignmentIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/ActiveAssignmentIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/ActiveAssignmentIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/EnrouteImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/EnrouteImage.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/HoldImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/HoldImage.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/Icon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/ItemPopupDivider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/ItemPopupDivider.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/LaborHoursDivider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/LaborHoursDivider.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/MapIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/MapIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/MapOverlayDirections.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/MapOverlayDirections.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/MapOverlayDirectionsDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/MapOverlayDirectionsDown.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/MapOverlayDivider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/MapOverlayDivider.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/MapOverlayIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/MapOverlayIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/MapOverlayIconDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/MapOverlayIconDown.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/NewAssignmentIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/NewAssignmentIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/NextButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/NextButton.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/PhoneIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/PhoneIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/PreviousButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/PreviousButton.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/SearchIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/SearchIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/SelectedItem.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/SelectedItem.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/SummaryPause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/SummaryPause.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/SummaryRecord.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/SummaryRecord.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/TimerPause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/TimerPause.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/TimerRecord.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/TimerRecord.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/TrashCanIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/TrashCanIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/UpLaborHours.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/UpLaborHours.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/XamarinTitle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/XamarinTitle.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/accept.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/accept.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/actionbar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/actionbar.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/back_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/back_button.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/bottomSearchBar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/bottomSearchBar.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/cameraIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/cameraIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/clearIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/clearIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/clearIconDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/clearIconDown.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/darkPhoneIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/darkPhoneIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/decline.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/decline.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/documentIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/documentIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/downlaborhours.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/downlaborhours.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/laborHoursBottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/laborHoursBottom.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/labordescriptionbottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/labordescriptionbottom.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/loginbox.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/loginbox.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/navigationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/navigationIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/questionmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/questionmark.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/roundedblack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/roundedblack.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/triangleblue.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/triangleblue.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/triangledark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/triangledark.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/trianglegrey.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/trianglegrey.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-mdpi/trianglewhite.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-mdpi/trianglewhite.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/AcceptedAssignmentIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/AcceptedAssignmentIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/ActiveAssignmentIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/ActiveAssignmentIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/EnrouteImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/EnrouteImage.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/HoldImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/HoldImage.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/Icon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/ItemPopupDivider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/ItemPopupDivider.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/LaborHoursDivider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/LaborHoursDivider.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/MapIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/MapIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/MapOverlayDirections.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/MapOverlayDirections.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/MapOverlayDirectionsDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/MapOverlayDirectionsDown.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/MapOverlayDivider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/MapOverlayDivider.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/MapOverlayIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/MapOverlayIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/MapOverlayIconDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/MapOverlayIconDown.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/NewAssignmentIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/NewAssignmentIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/NextButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/NextButton.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/PhoneIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/PhoneIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/PreviousButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/PreviousButton.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/SearchIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/SearchIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/SelectedItem.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/SelectedItem.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/SummaryPause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/SummaryPause.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/SummaryRecord.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/SummaryRecord.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/TimerPause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/TimerPause.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/TimerRecord.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/TimerRecord.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/TrashCanIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/TrashCanIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/UpLaborHours.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/UpLaborHours.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/XamarinTitle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/XamarinTitle.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/accept.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/accept.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/actionbar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/actionbar.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/back_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/back_button.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/bottomSearchBar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/bottomSearchBar.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/cameraIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/cameraIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/clearIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/clearIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/clearIconDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/clearIconDown.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/darkPhoneIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/darkPhoneIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/decline.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/decline.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/documentIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/documentIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/downlaborhours.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/downlaborhours.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/laborHoursBottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/laborHoursBottom.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/labordescriptionbottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/labordescriptionbottom.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/loginbox.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/loginbox.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/navigationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/navigationIcon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/roundedblack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/roundedblack.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/triangleblue.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/triangleblue.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/triangledark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/triangledark.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/trianglegrey.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/trianglegrey.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable-xhdpi/trianglewhite.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.Android/Resources/Drawable-xhdpi/trianglewhite.9.png
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/accept_assignment.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/action_bar_back.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/active_assignment_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/assignment_list_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/border.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/cancel_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/clear_search_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/decline_assignment.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/get_directions_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/items_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/login_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/mapOverlay.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/navigation_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/smallBlueRectangle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 | -
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/summary_timer.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/tab_selected.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 | -
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/tab_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
7 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/tab_unselected.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Drawable/timer_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-land/Assignments.axml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
12 |
19 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-land/AssignmentsLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
10 |
18 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-sw720dp-land/AssignmentsLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
10 |
18 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-sw720dp-port/AssignmentsLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
11 |
19 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-sw720dp/AssignmentHistoryLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
14 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-sw720dp/DocumentFragmentLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
14 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-sw720dp/ExpensesFragmentLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
16 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-sw720dp/HistoryTabs.axml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
17 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-sw720dp/ItemSearchListItemLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
17 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-sw720dp/ItemsFragmentLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
16 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-sw720dp/LaborHoursLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
14 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-sw720dp/MapFragmentLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
11 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-sw720dp/MapViewLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
10 |
15 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout-sw720dp/SimpleSpinnerItem.axml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout/AssignmentHistoryLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
14 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout/DocumentFragmentLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
14 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout/ExpensesFragmentLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
16 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout/ExpensesLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
16 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout/HistoryTabs.axml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
17 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout/ItemSearchListItem.axml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout/ItemSearchListItemLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
17 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout/ItemsFragmentLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
16 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout/LaborHoursLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
14 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout/MapFragmentLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
11 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout/MapViewLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
10 |
15 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout/NavigationItemLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
12 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Layout/SimpleSpinnerItem.axml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Menu/FragmentNavigationMenu.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Menu/SummaryMenu.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Values/Colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #33B5E5
4 | #9DE5F7
5 | #DBDBDB
6 | #7C7C7C
7 | #707070
8 | #F9F9F9
9 | #D8F4FF
10 | #EAE9E9
11 | #333333
12 | #BEBEBE
13 | #CCCCCC
14 | #A9A9A9
15 | #FEA736
16 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/Values/Styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
11 |
12 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/Resources/layout-port/AssignmentsLayout.axml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
11 |
19 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Android/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Shared/Data/ExpensePhoto.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using SQLite;
6 |
7 | namespace FieldService.Data
8 | {
9 | public class ExpensePhoto
10 | {
11 | ///
12 | /// Expense Photo Id
13 | ///
14 | [PrimaryKey, AutoIncrement]
15 | public int Id { get; set; }
16 |
17 | ///
18 | /// Link to an expense
19 | ///
20 | [Indexed]
21 | public int ExpenseId { get; set; }
22 |
23 | ///
24 | /// Gets or sets image for the expense
25 | ///
26 | public byte[] Image { get; set; }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Shared/Data/Signature.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using SQLite;
6 |
7 | namespace FieldService.Data {
8 | public class Signature {
9 | ///
10 | /// Signature Id
11 | ///
12 | [PrimaryKey, AutoIncrement]
13 | public int Id { get; set; }
14 |
15 | ///
16 | /// Link to an assignment
17 | ///
18 | [Indexed]
19 | public int AssignmentId { get; set; }
20 |
21 | ///
22 | /// Gets or sets the signature image
23 | ///
24 | public byte [] Image { get; set; }
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/FieldService/FieldService.Shared/Data/TimerEntry.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using SQLite;
6 |
7 | namespace FieldService.Data {
8 | ///
9 | /// Class for holding a TimeStamp to persist the timer while the app is closed
10 | ///
11 | public class TimerEntry {
12 | [PrimaryKey]
13 | public int Id { get; set; }
14 |
15 | ///
16 | /// The time the entry was started
17 | ///
18 | public DateTime Date { get; set; }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/App.xaml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 |
10 |
11 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/Logo.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/SmallLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/SmallLogo.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/SplashScreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/SplashScreen.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/StoreLogo.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/WideLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/WideLogo.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/assignmenticon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/assignmenticon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/assignmenticonblue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/assignmenticonblue.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/cameraicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/cameraicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/completeicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/completeicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/confirmationicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/confirmationicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/darkcameraicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/darkcameraicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/documenticon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/documenticon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/historyicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/historyicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/itemsicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/itemsicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/map_triangle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/map_triangle.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/mapicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/mapicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/maplargeicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/maplargeicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/personicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/personicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/phoneicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/phoneicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/phoneiconlarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/phoneiconlarge.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/phoneiconlargeblue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/phoneiconlargeblue.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/questionmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/questionmark.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/smoothbg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/smoothbg.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/smoothbg_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/smoothbg_blue.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/snaplogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/snaplogo.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/timericon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/timericon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Assets/titlelogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/Assets/titlelogo.png
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/FieldService.WinRT_TemporaryKey.pfx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/FieldService.WinRT_TemporaryKey.pfx
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/README.md:
--------------------------------------------------------------------------------
1 | # Field Service - WinRT
2 |
3 | We are using a Beta of the Bing Maps SDK, install here: http://visualstudiogallery.msdn.microsoft.com/ebc98390-5320-4088-a2b5-8f276e4530f9
4 |
5 | Instructions here: http://msdn.microsoft.com/en-us/library/hh855146.aspx
6 |
7 | You will need a bing maps key here: http://msdn.microsoft.com/en-us/library/ff428642.aspx
8 |
9 | One thing to note, is that we were no longer able to put "Any CPU" as our target. I changed it to x86 for now, for WinRT devices, change it to ARM, and ARM will not work with Debug builds, must run it in Release.
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/SignatureBoxControl.pri:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.WinRT/SignatureBoxControl.pri
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Views/MapTile.xaml:
--------------------------------------------------------------------------------
1 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/Views/SnapPage.xaml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/FieldService/FieldService.WinRT/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Controllers/BaseNavigationController.designer.cs:
--------------------------------------------------------------------------------
1 | // WARNING
2 | //
3 | // This file has been generated automatically by MonoDevelop to store outlets and
4 | // actions made in the Xcode designer. If it is removed, they will be lost.
5 | // Manual changes to this file may not be handled correctly.
6 | //
7 | using Foundation;
8 |
9 | namespace FieldService.iOS
10 | {
11 | [Register ("BaseNavigationController")]
12 | partial class BaseNavigationController
13 | {
14 |
15 | void ReleaseDesignerOutlets ()
16 | {
17 | }
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Controllers/DocumentController.designer.cs:
--------------------------------------------------------------------------------
1 | // WARNING
2 | //
3 | // This file has been generated automatically by MonoDevelop to store outlets and
4 | // actions made in the Xcode designer. If it is removed, they will be lost.
5 | // Manual changes to this file may not be handled correctly.
6 | //
7 | using Foundation;
8 |
9 | namespace FieldService.iOS
10 | {
11 | [Register ("DocumentController")]
12 | partial class DocumentController
13 | {
14 | [Outlet]
15 | UIKit.UIToolbar toolbar { get; set; }
16 |
17 | [Outlet]
18 | UIKit.UITableView tableView { get; set; }
19 |
20 | void ReleaseDesignerOutlets ()
21 | {
22 | if (toolbar != null) {
23 | toolbar.Dispose ();
24 | toolbar = null;
25 | }
26 |
27 | if (tableView != null) {
28 | tableView.Dispose ();
29 | tableView = null;
30 | }
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Controllers/ExpenseController.designer.cs:
--------------------------------------------------------------------------------
1 | // WARNING
2 | //
3 | // This file has been generated automatically by MonoDevelop to store outlets and
4 | // actions made in the Xcode designer. If it is removed, they will be lost.
5 | // Manual changes to this file may not be handled correctly.
6 | //
7 | using Foundation;
8 |
9 | namespace FieldService.iOS
10 | {
11 | [Register ("ExpenseController")]
12 | partial class ExpenseController
13 | {
14 | [Outlet]
15 | UIKit.UITableView tableView { get; set; }
16 |
17 | [Outlet]
18 | UIKit.UIToolbar toolbar { get; set; }
19 |
20 | void ReleaseDesignerOutlets ()
21 | {
22 | if (tableView != null) {
23 | tableView.Dispose ();
24 | tableView = null;
25 | }
26 |
27 | if (toolbar != null) {
28 | toolbar.Dispose ();
29 | toolbar = null;
30 | }
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Controllers/HistoryController.designer.cs:
--------------------------------------------------------------------------------
1 | // WARNING
2 | //
3 | // This file has been generated automatically by MonoDevelop to store outlets and
4 | // actions made in the Xcode designer. If it is removed, they will be lost.
5 | // Manual changes to this file may not be handled correctly.
6 | //
7 | using Foundation;
8 |
9 | namespace FieldService.iOS
10 | {
11 | [Register ("HistoryController")]
12 | partial class HistoryController
13 | {
14 | [Outlet]
15 | UIKit.UIToolbar toolbar { get; set; }
16 |
17 | [Outlet]
18 | UIKit.UITableView tableView { get; set; }
19 |
20 | void ReleaseDesignerOutlets ()
21 | {
22 | if (toolbar != null) {
23 | toolbar.Dispose ();
24 | toolbar = null;
25 | }
26 |
27 | if (tableView != null) {
28 | tableView.Dispose ();
29 | tableView = null;
30 | }
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Controllers/ItemsViewController.designer.cs:
--------------------------------------------------------------------------------
1 | // WARNING
2 | //
3 | // This file has been generated automatically by MonoDevelop to store outlets and
4 | // actions made in the Xcode designer. If it is removed, they will be lost.
5 | // Manual changes to this file may not be handled correctly.
6 | //
7 | using Foundation;
8 |
9 | namespace FieldService.iOS
10 | {
11 | [Register ("ItemsViewController")]
12 | partial class ItemsViewController
13 | {
14 | [Outlet]
15 | UIKit.UIToolbar toolbar { get; set; }
16 |
17 | [Outlet]
18 | UIKit.UITableView tableView { get; set; }
19 |
20 | void ReleaseDesignerOutlets ()
21 | {
22 | if (toolbar != null) {
23 | toolbar.Dispose ();
24 | toolbar = null;
25 | }
26 |
27 | if (tableView != null) {
28 | tableView.Dispose ();
29 | tableView = null;
30 | }
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Controllers/LaborController.designer.cs:
--------------------------------------------------------------------------------
1 | // WARNING
2 | //
3 | // This file has been generated automatically by MonoDevelop to store outlets and
4 | // actions made in the Xcode designer. If it is removed, they will be lost.
5 | // Manual changes to this file may not be handled correctly.
6 | //
7 | using Foundation;
8 |
9 | namespace FieldService.iOS
10 | {
11 | [Register ("LaborController")]
12 | partial class LaborController
13 | {
14 | [Outlet]
15 | UIKit.UIToolbar toolbar { get; set; }
16 |
17 | [Outlet]
18 | UIKit.UITableView tableView { get; set; }
19 |
20 | void ReleaseDesignerOutlets ()
21 | {
22 | if (toolbar != null) {
23 | toolbar.Dispose ();
24 | toolbar = null;
25 | }
26 |
27 | if (tableView != null) {
28 | tableView.Dispose ();
29 | tableView = null;
30 | }
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Controllers/SplitController.designer.cs:
--------------------------------------------------------------------------------
1 | // WARNING
2 | //
3 | // This file has been generated automatically by MonoDevelop to store outlets and
4 | // actions made in the Xcode designer. If it is removed, they will be lost.
5 | // Manual changes to this file may not be handled correctly.
6 | //
7 | using Foundation;
8 |
9 | namespace FieldService.iOS
10 | {
11 | partial class SplitController
12 | {
13 | [Outlet]
14 | UIKit.UIView masterView { get; set; }
15 |
16 | [Outlet]
17 | UIKit.UIView detailView { get; set; }
18 |
19 | void ReleaseDesignerOutlets ()
20 | {
21 | if (masterView != null) {
22 | masterView.Dispose ();
23 | masterView = null;
24 | }
25 |
26 | if (detailView != null) {
27 | detailView.Dispose ();
28 | detailView = null;
29 | }
30 | }
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Controllers/TabController.designer.cs:
--------------------------------------------------------------------------------
1 | // WARNING
2 | //
3 | // This file has been generated automatically by MonoDevelop to store outlets and
4 | // actions made in the Xcode designer. If it is removed, they will be lost.
5 | // Manual changes to this file may not be handled correctly.
6 | //
7 | using Foundation;
8 |
9 | namespace FieldService.iOS
10 | {
11 | [Register ("TabController")]
12 | partial class TabController
13 | {
14 | [Outlet]
15 | UIKit.UIBarButtonItem settings { get; set; }
16 |
17 | [Action ("Settings:")]
18 | partial void Settings (Foundation.NSObject sender);
19 |
20 | void ReleaseDesignerOutlets ()
21 | {
22 | if (settings != null) {
23 | settings.Dispose ();
24 | settings = null;
25 | }
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Data/contract.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Data/contract.pdf
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Data/sla.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Data/sla.pdf
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Data/techspecs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Data/techspecs.pdf
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Data/valuableinformation.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Data/valuableinformation.pdf
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/accept.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/accept.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/accept@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/accept@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/addphoto.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/addphoto.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/addphoto@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/addphoto@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/arrow_down.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/arrow_down@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/arrow_down@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/arrow_up.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/arrow_up@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/arrow_up@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/arrowwhite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/arrowwhite.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/arrowwhite@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/arrowwhite@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/assignmentactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/assignmentactive.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/assignmentactive@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/assignmentactive@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/assignmentactiveblue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/assignmentactiveblue.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/assignmentactiveblue@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/assignmentactiveblue@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/assignmentblue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/assignmentblue.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/assignmentblue@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/assignmentblue@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/assignmentgrey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/assignmentgrey.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/assignmentgrey@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/assignmentgrey@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/backbutton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/backbutton.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/backbutton@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/backbutton@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/bg_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/bg_left.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/bg_left@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/bg_left@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/bluebar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/bluebar.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/bluebar@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/bluebar@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/bluenavbutton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/bluenavbutton.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/bluenavbutton@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/bluenavbutton@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/buttondark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/buttondark.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/buttondark@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/buttondark@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/camera.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/camera.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/camera@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/camera@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/complete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/complete.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/complete@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/complete@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/complete_inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/complete_inactive.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/complete_inactive@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/complete_inactive@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/decline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/decline.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/decline@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/decline@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/deletebutton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/deletebutton.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/deletebutton@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/deletebutton@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/dot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/dot.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/dot@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/dot@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/dropdown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/dropdown.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/dropdown@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/dropdown@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/complete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/complete.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/complete@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/complete@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/complete_inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/complete_inactive.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/complete_inactive@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/complete_inactive@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/dropdown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/dropdown.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/dropdown@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/dropdown@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/hexagons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/hexagons.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/hexagons@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/hexagons@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/icon_pdf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/icon_pdf.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/icon_pdf@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/icon_pdf@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/iconphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/iconphone.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/iconphone@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/iconphone@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/iconsettings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/iconsettings.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/iconsettings@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/iconsettings@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/iconsignature.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/iconsignature.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/iconsignature@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/iconsignature@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/image_placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/image_placeholder.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/image_placeholder@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/image_placeholder@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/listicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/listicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/listicon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/listicon@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/listicon_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/listicon_selected.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/listicon_selected@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/listicon_selected@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/login_box.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/login_box.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/login_box@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/login_box@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/login_btn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/login_btn.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/login_btn@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/login_btn@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/logo.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/logo@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/logo@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/map.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/map@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/map@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/mapicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/mapicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/mapicon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/mapicon@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/mapicon_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/mapicon_selected.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/mapicon_selected@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/mapicon_selected@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/numberbox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/numberbox.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/numberbox@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/numberbox@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/numberbox_hollow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/numberbox_hollow.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/numberbox_hollow@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/numberbox_hollow@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/questionmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/questionmark.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/questionmark@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/questionmark@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/record.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/record.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/record@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/record@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/record_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/record_active.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/record_active@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/record_active@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/timebox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/timebox.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iOS7/timebox@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iOS7/timebox@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/icon_pdf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/icon_pdf.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/icon_pdf@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/icon_pdf@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iconactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iconactive.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iconactive@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iconactive@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iconcomplete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iconcomplete.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iconcomplete@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iconcomplete@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iconhold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iconhold.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iconhold@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iconhold@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iconphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iconphone.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iconphone@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iconphone@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iconphone_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iconphone_dark.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iconphone_dark@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iconphone_dark@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iconsettings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iconsettings.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/iconsettings@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/iconsettings@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/inlay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/inlay.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/inlay@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/inlay@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/leftlist_end.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/leftlist_end.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/leftlist_end@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/leftlist_end@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/leftlist_end_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/leftlist_end_active.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/leftlist_end_active@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/leftlist_end_active@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/leftlist_mid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/leftlist_mid.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/leftlist_mid@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/leftlist_mid@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/leftlist_mid_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/leftlist_mid_active.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/leftlist_mid_active@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/leftlist_mid_active@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/leftlist_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/leftlist_top.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/leftlist_top@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/leftlist_top@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/leftlist_top_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/leftlist_top_active.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/leftlist_top_active@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/leftlist_top_active@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/linenpattern.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/linenpattern.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/linenpattern@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/linenpattern@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/listicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/listicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/listicon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/listicon@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/login_box.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/login_box.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/login_box@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/login_box@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/login_btn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/login_btn.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/login_btn@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/login_btn@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/login_textfield.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/login_textfield.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/login_textfield@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/login_textfield@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/logo.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/logo@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/logo@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/map.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/map@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/map@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/mapicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/mapicon.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/mapicon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/mapicon@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/modal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/modal.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/modal@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/modal@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/modal_inlay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/modal_inlay.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/modal_inlay@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/modal_inlay@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/numberbox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/numberbox.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/numberbox@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/numberbox@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/orangebar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/orangebar.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/orangebar@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/orangebar@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/orangenavbutton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/orangenavbutton.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/orangenavbutton@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/orangenavbutton@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/photoframe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/photoframe.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/photoframe@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/photoframe@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/questionmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/questionmark.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/questionmark@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/questionmark@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/record.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/record.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/record@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/record@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/record_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/record_active.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/record_active@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/record_active@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/rightboxshadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/rightboxshadow.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/rightboxshadow@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/rightboxshadow@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/row.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/row.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/row@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/row@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/rowend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/rowend.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/rowend@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/rowend@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/rowpress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/rowpress.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/rowpress@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/rowpress@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/rowshadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/rowshadow.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/rowshadow@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/rowshadow@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/shortrowpress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/shortrowpress.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/shortrowpress@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/shortrowpress@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/smallgreybtn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/smallgreybtn.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/smallgreybtn@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/smallgreybtn@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/timerbg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/timerbg.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/timerbg@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/timerbg@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/timerfield.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/timerfield.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/timerfield@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/timerfield@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/toolbarshadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/toolbarshadow.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/toolbarshadow@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/toolbarshadow@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/topnav.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/topnav.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/topnav@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/topnav@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/topnavbtn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/topnavbtn.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Images/topnavbtn@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Images/topnavbtn@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Resources/100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Resources/100.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Resources/144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Resources/144.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Resources/29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Resources/29.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Resources/50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Resources/50.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Resources/58.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Resources/58.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Resources/72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Resources/72.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Resources/Default-Landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Resources/Default-Landscape.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Resources/Default-Landscape@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Resources/Default-Landscape@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/xamarin/prebuilt-apps/f111672bc6915ceb402abb47dedfe3480e111720/FieldService/FieldService.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Views/AssignmentItemCell.designer.cs:
--------------------------------------------------------------------------------
1 | // WARNING
2 | //
3 | // This file has been generated automatically by MonoDevelop to store outlets and
4 | // actions made in the Xcode designer. If it is removed, they will be lost.
5 | // Manual changes to this file may not be handled correctly.
6 | //
7 | using Foundation;
8 |
9 | namespace FieldService.iOS
10 | {
11 | [Register ("AssignmentItemCell")]
12 | partial class AssignmentItemCell
13 | {
14 | [Outlet]
15 | UIKit.UILabel label { get; set; }
16 |
17 | void ReleaseDesignerOutlets ()
18 | {
19 | if (label != null) {
20 | label.Dispose ();
21 | label = null;
22 | }
23 | }
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Views/CompleteCell.designer.cs:
--------------------------------------------------------------------------------
1 | // WARNING
2 | //
3 | // This file has been generated automatically by MonoDevelop to store outlets and
4 | // actions made in the Xcode designer. If it is removed, they will be lost.
5 | // Manual changes to this file may not be handled correctly.
6 | //
7 | using Foundation;
8 |
9 | namespace FieldService.iOS
10 | {
11 | [Register ("CompleteCell")]
12 | partial class CompleteCell
13 | {
14 | [Outlet]
15 | UIKit.UIButton completeButton { get; set; }
16 |
17 | [Action ("Complete")]
18 | partial void Complete ();
19 |
20 | void ReleaseDesignerOutlets ()
21 | {
22 | if (completeButton != null) {
23 | completeButton.Dispose ();
24 | completeButton = null;
25 | }
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Views/StatusButton.designer.cs:
--------------------------------------------------------------------------------
1 | // WARNING
2 | //
3 | // This file has been generated automatically by MonoDevelop to store outlets and
4 | // actions made in the Xcode designer. If it is removed, they will be lost.
5 | // Manual changes to this file may not be handled correctly.
6 | //
7 | using Foundation;
8 |
9 | namespace FieldService.iOS
10 | {
11 | [Register ("StatusButton")]
12 | partial class StatusButton
13 | {
14 |
15 | void ReleaseDesignerOutlets ()
16 | {
17 | }
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/FieldService/FieldService.iOS/Views/TextButton.designer.cs:
--------------------------------------------------------------------------------
1 | // WARNING
2 | //
3 | // This file has been generated automatically by MonoDevelop to store outlets and
4 | // actions made in the Xcode designer. If it is removed, they will be lost.
5 | // Manual changes to this file may not be handled correctly.
6 | //
7 | using Foundation;
8 |
9 | namespace FieldService.iOS
10 | {
11 | [Register ("TextButton")]
12 | partial class TextButton
13 | {
14 |
15 | void ReleaseDesignerOutlets ()
16 | {
17 | }
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/Rakefile:
--------------------------------------------------------------------------------
1 | require 'rake/clean'
2 |
3 | MDTOOL = "/Applications/Xamarin Studio.app/Contents/MacOS/mdtool"
4 |
5 | APPS = %w{
6 | FieldService/FieldService.Xamarin.sln
7 | EmployeeDirectory/EmployeeDirectory.Xamarin.sln
8 | }
9 |
10 | task :default => :build
11 |
12 | # Builds a .sln file with MonoDevelop
13 | def mdbuild solution, opts = {}
14 | sh "'#{MDTOOL}' build --configuration:Release '#{solution}'", opts
15 | end
16 |
17 | desc "Builds all prebuilt apps"
18 | task :build do
19 | APPS.each do |sln|
20 | mdbuild sln
21 | end
22 | end
23 |
--------------------------------------------------------------------------------
/build:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | MONO=mono
4 |
5 | if [ "x$OS" = "xWindows_NT" ] ; then
6 | MONO=""
7 | fi
8 |
9 | # getting latest FAKE via NuGet
10 | if [ ! -f tools/FAKE/tools/FAKE.exe ]; then
11 | echo "Getting latest FAKE... This may take a minute."
12 | $MONO .nuget/nuget.exe install FAKE -OutputDirectory tools -ExcludeVersion
13 | fi
14 |
15 | $MONO tools/FAKE/tools/FAKE.exe build.fsx $@
16 |
--------------------------------------------------------------------------------
/tools/.gitignore:
--------------------------------------------------------------------------------
1 | FAKE
2 | xpkg
3 |
--------------------------------------------------------------------------------