├── .gitignore ├── Hunt.ARM ├── .vs │ ├── Hunt.ARM │ │ └── v15 │ │ │ └── .suo │ └── config │ │ └── applicationhost.config ├── Hunt.ARM.sln └── Hunt.ARM │ ├── Deploy-AzureResourceGroup.ps1 │ ├── Deployment.targets │ ├── Hunt.ARM.deployproj │ ├── azuredeploy.json │ └── azuredeploy.parameters.json ├── Hunt.Backend.Test ├── FunctionTests.cs └── Hunt.Backend.Test.csproj ├── Hunt.Backend.sln ├── Hunt.Backend ├── .gitignore ├── ConfigManager.cs ├── Functions │ ├── AnalyseCustomImage.cs │ ├── AnalyseImage.cs │ ├── AnalyseText.cs │ ├── EndGame.cs │ ├── GetGame.cs │ ├── GetGameByEntryCode.cs │ ├── GetOngoingGame.cs │ ├── GetStorageToken.cs │ ├── PostMessageToQueue.cs │ ├── RegisterDevice.cs │ ├── SaveGame.cs │ ├── TrainClassifier.cs │ └── WakeUp.cs ├── HttpClient.cs ├── Hunt.Backend.csproj ├── Models │ └── StorageToken.cs ├── Services │ ├── AnalyticService.cs │ ├── CosmosDataService.cs │ ├── EventHubService.cs │ ├── PushService.cs │ ├── QueueService.cs │ └── VisionService.cs └── host.json ├── Hunt.Common ├── Enums.cs ├── Extensions.cs ├── Hunt.Common.csproj ├── Models │ ├── AcquiredTreasure.cs │ ├── Attribute.cs │ ├── BaseDocument.cs │ ├── BaseModel.cs │ ├── CognitiveServiceType.cs │ ├── ContentModeration.cs │ ├── DeviceRegistration.cs │ ├── Event.cs │ ├── Game.cs │ ├── Player.cs │ ├── Team.cs │ └── Treasure.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Hunt.Mobile.Android ├── Assets │ ├── AboutAssets.txt │ ├── Avenir.ttf │ ├── checkmark_circle.json │ ├── progress_balls.json │ ├── progress_circle.json │ ├── star.json │ └── trophy.json ├── Hunt.Mobile.Android.csproj ├── LaunchActivity.cs ├── MainActivity.cs ├── MainApplication.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Providers │ ├── DeviceController.cs │ ├── EntryExtendRenderer.cs │ ├── ImageService.cs │ ├── LogProvider.cs │ └── PushNotification.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── drawable │ │ ├── action_bar_background.xml │ │ ├── background.jpg │ │ ├── background_highres.jpg │ │ ├── bg.jpg │ │ ├── fab_add.png │ │ ├── fab_camera.png │ │ ├── fab_check.png │ │ ├── game_header.jpg │ │ ├── gradient.axml │ │ ├── header_bg.jpg │ │ ├── icon.png │ │ ├── join_team_header.jpg │ │ ├── splash_background.jpg │ │ ├── splash_icon.png │ │ ├── splash_view.axml │ │ └── stats.png │ ├── mipmap-hdpi │ │ └── Icon.png │ ├── mipmap-mdpi │ │ └── icon.png │ ├── mipmap-xhdpi │ │ └── icon.png │ ├── mipmap-xxhdpi │ │ └── icon.png │ ├── mipmap-xxxhdpi │ │ └── icon.png │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── style.xml │ └── xml │ │ └── file_paths.xml ├── google-services.json ├── mobile-center-post-clone.sh ├── packages.config └── proguard.cfg ├── Hunt.Mobile.Common ├── Abstractions │ ├── EntryExtend.cs │ ├── HuntViewCell.cs │ ├── IDeviceController.cs │ ├── IHudProvider.cs │ ├── IImageService.cs │ ├── ILogProvider.cs │ └── IPushProvider.cs ├── App.xaml ├── App.xaml.cs ├── ConfigManager.cs ├── Constants.cs ├── Controls │ ├── CircleProgress.cs │ ├── ImageButton.cs │ ├── NavigationBar.xaml │ ├── NavigationBar.xaml.cs │ ├── RoundedRectangle.cs │ └── SvgImage.cs ├── Hunt.Mobile.Common.csproj ├── Pages │ ├── AddCustomTreasureImagesPage.xaml │ ├── AddCustomTreasureImagesPage.xaml.cs │ ├── AddCustomTreasurePage.xaml │ ├── AddCustomTreasurePage.xaml.cs │ ├── AddGenericTreasurePage.xaml │ ├── AddGenericTreasurePage.xaml.cs │ ├── AssignAttributesPage.xaml │ ├── AssignAttributesPage.xaml.cs │ ├── BaseContentPage.cs │ ├── CreateGamePage.xaml │ ├── CreateGamePage.xaml.cs │ ├── DashboardPage.xaml │ ├── DashboardPage.xaml.cs │ ├── FullSizeImagePage.xaml │ ├── FullSizeImagePage.xaml.cs │ ├── GameDetailsPage.xaml │ ├── GameDetailsPage.xaml.cs │ ├── LoadingDataPage.xaml │ ├── LoadingDataPage.xaml.cs │ ├── RegistrationPage.xaml │ ├── RegistrationPage.xaml.cs │ ├── ShareGameInvitePage.xaml │ ├── ShareGameInvitePage.xaml.cs │ ├── TeamListPage.xaml │ ├── TeamListPage.xaml.cs │ ├── TreasureDetailsPage.xaml │ ├── TreasureDetailsPage.xaml.cs │ ├── TreasureTypePage.xaml │ └── TreasureTypePage.xaml.cs ├── Resources │ ├── accessory_right.svg │ ├── alias.svg │ ├── back_arrow.svg │ ├── camera.svg │ ├── checkmark.svg │ ├── chevron_right.svg │ ├── circle_filled.svg │ ├── close_x.svg │ ├── complete_item.svg │ ├── email.svg │ ├── fab_add.svg │ ├── incomplete_item.svg │ ├── logout.svg │ ├── mock_game.json │ ├── plus.svg │ ├── points_acquired.svg │ ├── qr_code_scan.svg │ ├── refresh_arrow.svg │ ├── right_arrow.svg │ ├── share.svg │ ├── sleuth.svg │ ├── teams.svg │ ├── timer.svg │ ├── treasures_acquired.svg │ └── vertical_dots.svg ├── Services │ ├── FunctionsService.cs │ └── StorageService.cs ├── Utilities │ ├── BaseNotify.cs │ ├── Busy.cs │ ├── Converters.cs │ ├── Extensions.cs │ ├── Mocker.cs │ ├── Settings.cs │ └── TaskRunner.cs ├── ViewModels │ ├── AddCustomTreasureViewModel.cs │ ├── AddGenericTreasureViewModel.cs │ ├── BaseAddTreasureViewModel.cs │ ├── BaseGameViewModel.cs │ ├── BaseViewModel.cs │ ├── CreateGameViewModel.cs │ ├── DashboardViewModel.cs │ ├── GameDetailsViewModel.cs │ ├── RegistrationViewModel.cs │ ├── ShareGameInviteViewModel.cs │ ├── TeamDetailsViewModel.cs │ ├── TeamListViewModel.cs │ ├── TreasureDetailsViewModel.cs │ ├── TreasureTypeViewModel.cs │ └── TreasureViewModel.cs └── config.json ├── Hunt.Mobile.UITest ├── AppInitializer.cs ├── CreateNewGame.cs ├── Helpers.cs ├── Hunt.Mobile.UITest.csproj └── packages.config ├── Hunt.Mobile.iOS ├── AppDelegate.cs ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_120.png │ │ └── icon_180.png │ ├── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── Entitlements.plist ├── Hunt.Mobile.iOS.csproj ├── Hunt │ └── Builds │ │ └── Hunt.Mobile.iOS.ipa ├── Info.plist ├── LaunchScreen.storyboard ├── Main.cs ├── Providers │ ├── DeviceController.cs │ ├── EntryExtendRenderer.cs │ ├── ImageService.cs │ ├── LogProvider.cs │ ├── PushProvider.cs │ └── ViewCellRenderer.cs ├── Resources │ ├── checkmark_circle.json │ ├── fab_add.png │ ├── fab_camera.png │ ├── fab_check.png │ ├── launch_background.jpg │ ├── launch_icon.png │ ├── progress_balls.json │ ├── progress_circle.json │ ├── star.json │ ├── stats.png │ └── trophy.json └── packages.config ├── Hunt.Mobile.sln ├── Hunt.Terminal ├── EventProcessor.cs ├── Hunt.Terminal.csproj └── Program.cs ├── README.md ├── Resources ├── Assets │ ├── Design │ │ ├── Hunt Architecture.sketch │ │ ├── architecture.png │ │ ├── hunt_icon.pxm │ │ ├── icon_120.png │ │ ├── icon_180.png │ │ └── icon_192.png │ └── Security │ │ ├── Hunt AdHoc Key.keystore │ │ ├── Mobile Center API Token for Push Notifications.txt │ │ ├── push_public.p12 │ │ └── push_public_sandbox.p12 └── Scripts │ ├── distribute_android_release.sh │ ├── distribute_ios_release.sh │ ├── test_android_smoke.sh │ └── test_ios_smoke.sh └── azuredeploy.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/.gitignore -------------------------------------------------------------------------------- /Hunt.ARM/.vs/Hunt.ARM/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.ARM/.vs/Hunt.ARM/v15/.suo -------------------------------------------------------------------------------- /Hunt.ARM/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.ARM/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /Hunt.ARM/Hunt.ARM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.ARM/Hunt.ARM.sln -------------------------------------------------------------------------------- /Hunt.ARM/Hunt.ARM/Deploy-AzureResourceGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.ARM/Hunt.ARM/Deploy-AzureResourceGroup.ps1 -------------------------------------------------------------------------------- /Hunt.ARM/Hunt.ARM/Deployment.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.ARM/Hunt.ARM/Deployment.targets -------------------------------------------------------------------------------- /Hunt.ARM/Hunt.ARM/Hunt.ARM.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.ARM/Hunt.ARM/Hunt.ARM.deployproj -------------------------------------------------------------------------------- /Hunt.ARM/Hunt.ARM/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.ARM/Hunt.ARM/azuredeploy.json -------------------------------------------------------------------------------- /Hunt.ARM/Hunt.ARM/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.ARM/Hunt.ARM/azuredeploy.parameters.json -------------------------------------------------------------------------------- /Hunt.Backend.Test/FunctionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend.Test/FunctionTests.cs -------------------------------------------------------------------------------- /Hunt.Backend.Test/Hunt.Backend.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend.Test/Hunt.Backend.Test.csproj -------------------------------------------------------------------------------- /Hunt.Backend.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend.sln -------------------------------------------------------------------------------- /Hunt.Backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/.gitignore -------------------------------------------------------------------------------- /Hunt.Backend/ConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/ConfigManager.cs -------------------------------------------------------------------------------- /Hunt.Backend/Functions/AnalyseCustomImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Functions/AnalyseCustomImage.cs -------------------------------------------------------------------------------- /Hunt.Backend/Functions/AnalyseImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Functions/AnalyseImage.cs -------------------------------------------------------------------------------- /Hunt.Backend/Functions/AnalyseText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Functions/AnalyseText.cs -------------------------------------------------------------------------------- /Hunt.Backend/Functions/EndGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Functions/EndGame.cs -------------------------------------------------------------------------------- /Hunt.Backend/Functions/GetGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Functions/GetGame.cs -------------------------------------------------------------------------------- /Hunt.Backend/Functions/GetGameByEntryCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Functions/GetGameByEntryCode.cs -------------------------------------------------------------------------------- /Hunt.Backend/Functions/GetOngoingGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Functions/GetOngoingGame.cs -------------------------------------------------------------------------------- /Hunt.Backend/Functions/GetStorageToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Functions/GetStorageToken.cs -------------------------------------------------------------------------------- /Hunt.Backend/Functions/PostMessageToQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Functions/PostMessageToQueue.cs -------------------------------------------------------------------------------- /Hunt.Backend/Functions/RegisterDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Functions/RegisterDevice.cs -------------------------------------------------------------------------------- /Hunt.Backend/Functions/SaveGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Functions/SaveGame.cs -------------------------------------------------------------------------------- /Hunt.Backend/Functions/TrainClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Functions/TrainClassifier.cs -------------------------------------------------------------------------------- /Hunt.Backend/Functions/WakeUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Functions/WakeUp.cs -------------------------------------------------------------------------------- /Hunt.Backend/HttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/HttpClient.cs -------------------------------------------------------------------------------- /Hunt.Backend/Hunt.Backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Hunt.Backend.csproj -------------------------------------------------------------------------------- /Hunt.Backend/Models/StorageToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Models/StorageToken.cs -------------------------------------------------------------------------------- /Hunt.Backend/Services/AnalyticService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Services/AnalyticService.cs -------------------------------------------------------------------------------- /Hunt.Backend/Services/CosmosDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Services/CosmosDataService.cs -------------------------------------------------------------------------------- /Hunt.Backend/Services/EventHubService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Services/EventHubService.cs -------------------------------------------------------------------------------- /Hunt.Backend/Services/PushService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Services/PushService.cs -------------------------------------------------------------------------------- /Hunt.Backend/Services/QueueService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Services/QueueService.cs -------------------------------------------------------------------------------- /Hunt.Backend/Services/VisionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Backend/Services/VisionService.cs -------------------------------------------------------------------------------- /Hunt.Backend/host.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /Hunt.Common/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Enums.cs -------------------------------------------------------------------------------- /Hunt.Common/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Extensions.cs -------------------------------------------------------------------------------- /Hunt.Common/Hunt.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Hunt.Common.csproj -------------------------------------------------------------------------------- /Hunt.Common/Models/AcquiredTreasure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Models/AcquiredTreasure.cs -------------------------------------------------------------------------------- /Hunt.Common/Models/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Models/Attribute.cs -------------------------------------------------------------------------------- /Hunt.Common/Models/BaseDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Models/BaseDocument.cs -------------------------------------------------------------------------------- /Hunt.Common/Models/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Models/BaseModel.cs -------------------------------------------------------------------------------- /Hunt.Common/Models/CognitiveServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Models/CognitiveServiceType.cs -------------------------------------------------------------------------------- /Hunt.Common/Models/ContentModeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Models/ContentModeration.cs -------------------------------------------------------------------------------- /Hunt.Common/Models/DeviceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Models/DeviceRegistration.cs -------------------------------------------------------------------------------- /Hunt.Common/Models/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Models/Event.cs -------------------------------------------------------------------------------- /Hunt.Common/Models/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Models/Game.cs -------------------------------------------------------------------------------- /Hunt.Common/Models/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Models/Player.cs -------------------------------------------------------------------------------- /Hunt.Common/Models/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Models/Team.cs -------------------------------------------------------------------------------- /Hunt.Common/Models/Treasure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Models/Treasure.cs -------------------------------------------------------------------------------- /Hunt.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Hunt.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Common/packages.config -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Assets/Avenir.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Assets/Avenir.ttf -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Assets/checkmark_circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Assets/checkmark_circle.json -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Assets/progress_balls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Assets/progress_balls.json -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Assets/progress_circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Assets/progress_circle.json -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Assets/star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Assets/star.json -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Assets/trophy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Assets/trophy.json -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Hunt.Mobile.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Hunt.Mobile.Android.csproj -------------------------------------------------------------------------------- /Hunt.Mobile.Android/LaunchActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/LaunchActivity.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/MainActivity.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/MainApplication.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Providers/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Providers/DeviceController.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Providers/EntryExtendRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Providers/EntryExtendRenderer.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Providers/ImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Providers/ImageService.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Providers/LogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Providers/LogProvider.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Providers/PushNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Providers/PushNotification.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/action_bar_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/action_bar_background.xml -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/background.jpg -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/background_highres.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/background_highres.jpg -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/bg.jpg -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/fab_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/fab_add.png -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/fab_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/fab_camera.png -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/fab_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/fab_check.png -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/game_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/game_header.jpg -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/gradient.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/gradient.axml -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/header_bg.jpg -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/join_team_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/join_team_header.jpg -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/splash_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/splash_background.jpg -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/splash_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/splash_icon.png -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/splash_view.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/splash_view.axml -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/drawable/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/drawable/stats.png -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/values/strings.xml -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/values/style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/values/style.xml -------------------------------------------------------------------------------- /Hunt.Mobile.Android/Resources/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/Resources/xml/file_paths.xml -------------------------------------------------------------------------------- /Hunt.Mobile.Android/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/google-services.json -------------------------------------------------------------------------------- /Hunt.Mobile.Android/mobile-center-post-clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/mobile-center-post-clone.sh -------------------------------------------------------------------------------- /Hunt.Mobile.Android/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/packages.config -------------------------------------------------------------------------------- /Hunt.Mobile.Android/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Android/proguard.cfg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Abstractions/EntryExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Abstractions/EntryExtend.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Abstractions/HuntViewCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Abstractions/HuntViewCell.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Abstractions/IDeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Abstractions/IDeviceController.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Abstractions/IHudProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Abstractions/IHudProvider.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Abstractions/IImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Abstractions/IImageService.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Abstractions/ILogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Abstractions/ILogProvider.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Abstractions/IPushProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Abstractions/IPushProvider.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/App.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/App.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ConfigManager.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Constants.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Controls/CircleProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Controls/CircleProgress.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Controls/ImageButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Controls/ImageButton.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Controls/NavigationBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Controls/NavigationBar.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Controls/NavigationBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Controls/NavigationBar.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Controls/RoundedRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Controls/RoundedRectangle.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Controls/SvgImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Controls/SvgImage.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Hunt.Mobile.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Hunt.Mobile.Common.csproj -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/AddCustomTreasureImagesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/AddCustomTreasureImagesPage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/AddCustomTreasureImagesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/AddCustomTreasureImagesPage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/AddCustomTreasurePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/AddCustomTreasurePage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/AddCustomTreasurePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/AddCustomTreasurePage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/AddGenericTreasurePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/AddGenericTreasurePage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/AddGenericTreasurePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/AddGenericTreasurePage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/AssignAttributesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/AssignAttributesPage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/AssignAttributesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/AssignAttributesPage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/BaseContentPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/BaseContentPage.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/CreateGamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/CreateGamePage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/CreateGamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/CreateGamePage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/DashboardPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/DashboardPage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/DashboardPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/DashboardPage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/FullSizeImagePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/FullSizeImagePage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/FullSizeImagePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/FullSizeImagePage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/GameDetailsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/GameDetailsPage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/GameDetailsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/GameDetailsPage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/LoadingDataPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/LoadingDataPage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/LoadingDataPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/LoadingDataPage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/RegistrationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/RegistrationPage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/RegistrationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/RegistrationPage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/ShareGameInvitePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/ShareGameInvitePage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/ShareGameInvitePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/ShareGameInvitePage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/TeamListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/TeamListPage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/TeamListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/TeamListPage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/TreasureDetailsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/TreasureDetailsPage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/TreasureDetailsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/TreasureDetailsPage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/TreasureTypePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/TreasureTypePage.xaml -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Pages/TreasureTypePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Pages/TreasureTypePage.xaml.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/accessory_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/accessory_right.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/alias.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/alias.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/back_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/back_arrow.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/camera.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/checkmark.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/chevron_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/chevron_right.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/circle_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/circle_filled.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/close_x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/close_x.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/complete_item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/complete_item.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/email.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/fab_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/fab_add.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/incomplete_item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/incomplete_item.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/logout.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/mock_game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/mock_game.json -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/plus.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/points_acquired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/points_acquired.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/qr_code_scan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/qr_code_scan.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/refresh_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/refresh_arrow.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/right_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/right_arrow.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/share.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/sleuth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/sleuth.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/teams.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/teams.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/timer.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/treasures_acquired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/treasures_acquired.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Resources/vertical_dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Resources/vertical_dots.svg -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Services/FunctionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Services/FunctionsService.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Services/StorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Services/StorageService.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Utilities/BaseNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Utilities/BaseNotify.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Utilities/Busy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Utilities/Busy.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Utilities/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Utilities/Converters.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Utilities/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Utilities/Extensions.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Utilities/Mocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Utilities/Mocker.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Utilities/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Utilities/Settings.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/Utilities/TaskRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/Utilities/TaskRunner.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/AddCustomTreasureViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/AddCustomTreasureViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/AddGenericTreasureViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/AddGenericTreasureViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/BaseAddTreasureViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/BaseAddTreasureViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/BaseGameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/BaseGameViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/CreateGameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/CreateGameViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/DashboardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/DashboardViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/GameDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/GameDetailsViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/RegistrationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/RegistrationViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/ShareGameInviteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/ShareGameInviteViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/TeamDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/TeamDetailsViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/TeamListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/TeamListViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/TreasureDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/TreasureDetailsViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/TreasureTypeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/TreasureTypeViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/ViewModels/TreasureViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/ViewModels/TreasureViewModel.cs -------------------------------------------------------------------------------- /Hunt.Mobile.Common/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.Common/config.json -------------------------------------------------------------------------------- /Hunt.Mobile.UITest/AppInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.UITest/AppInitializer.cs -------------------------------------------------------------------------------- /Hunt.Mobile.UITest/CreateNewGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.UITest/CreateNewGame.cs -------------------------------------------------------------------------------- /Hunt.Mobile.UITest/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.UITest/Helpers.cs -------------------------------------------------------------------------------- /Hunt.Mobile.UITest/Hunt.Mobile.UITest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.UITest/Hunt.Mobile.UITest.csproj -------------------------------------------------------------------------------- /Hunt.Mobile.UITest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.UITest/packages.config -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Assets.xcassets/AppIcon.appiconset/icon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Assets.xcassets/AppIcon.appiconset/icon_120.png -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Assets.xcassets/AppIcon.appiconset/icon_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Assets.xcassets/AppIcon.appiconset/icon_180.png -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Hunt.Mobile.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Hunt.Mobile.iOS.csproj -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Hunt/Builds/Hunt.Mobile.iOS.ipa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Hunt/Builds/Hunt.Mobile.iOS.ipa -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Info.plist -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Main.cs -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Providers/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Providers/DeviceController.cs -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Providers/EntryExtendRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Providers/EntryExtendRenderer.cs -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Providers/ImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Providers/ImageService.cs -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Providers/LogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Providers/LogProvider.cs -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Providers/PushProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Providers/PushProvider.cs -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Providers/ViewCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Providers/ViewCellRenderer.cs -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Resources/checkmark_circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Resources/checkmark_circle.json -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Resources/fab_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Resources/fab_add.png -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Resources/fab_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Resources/fab_camera.png -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Resources/fab_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Resources/fab_check.png -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Resources/launch_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Resources/launch_background.jpg -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Resources/launch_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Resources/launch_icon.png -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Resources/progress_balls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Resources/progress_balls.json -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Resources/progress_circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Resources/progress_circle.json -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Resources/star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Resources/star.json -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Resources/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Resources/stats.png -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/Resources/trophy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/Resources/trophy.json -------------------------------------------------------------------------------- /Hunt.Mobile.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.iOS/packages.config -------------------------------------------------------------------------------- /Hunt.Mobile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Mobile.sln -------------------------------------------------------------------------------- /Hunt.Terminal/EventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Terminal/EventProcessor.cs -------------------------------------------------------------------------------- /Hunt.Terminal/Hunt.Terminal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Terminal/Hunt.Terminal.csproj -------------------------------------------------------------------------------- /Hunt.Terminal/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Hunt.Terminal/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Assets/Design/Hunt Architecture.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Assets/Design/Hunt Architecture.sketch -------------------------------------------------------------------------------- /Resources/Assets/Design/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Assets/Design/architecture.png -------------------------------------------------------------------------------- /Resources/Assets/Design/hunt_icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Assets/Design/hunt_icon.pxm -------------------------------------------------------------------------------- /Resources/Assets/Design/icon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Assets/Design/icon_120.png -------------------------------------------------------------------------------- /Resources/Assets/Design/icon_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Assets/Design/icon_180.png -------------------------------------------------------------------------------- /Resources/Assets/Design/icon_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Assets/Design/icon_192.png -------------------------------------------------------------------------------- /Resources/Assets/Security/Hunt AdHoc Key.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Assets/Security/Hunt AdHoc Key.keystore -------------------------------------------------------------------------------- /Resources/Assets/Security/Mobile Center API Token for Push Notifications.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Assets/Security/Mobile Center API Token for Push Notifications.txt -------------------------------------------------------------------------------- /Resources/Assets/Security/push_public.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Assets/Security/push_public.p12 -------------------------------------------------------------------------------- /Resources/Assets/Security/push_public_sandbox.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Assets/Security/push_public_sandbox.p12 -------------------------------------------------------------------------------- /Resources/Scripts/distribute_android_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Scripts/distribute_android_release.sh -------------------------------------------------------------------------------- /Resources/Scripts/distribute_ios_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Scripts/distribute_ios_release.sh -------------------------------------------------------------------------------- /Resources/Scripts/test_android_smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Scripts/test_android_smoke.sh -------------------------------------------------------------------------------- /Resources/Scripts/test_ios_smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/Resources/Scripts/test_ios_smoke.sh -------------------------------------------------------------------------------- /azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-derosa/Hunt/HEAD/azuredeploy.json --------------------------------------------------------------------------------