├── .gitignore ├── .gitmodules ├── README.md ├── azure-app-service └── README.md ├── azure-iot-smart-coffee ├── .gitignore ├── LICENSE ├── README.md ├── images │ ├── Creating_Azure_IoT_Hub.png │ ├── Remote_Debugging.png │ ├── Shared_Access_Policies.png │ └── smartcoffee.jpg ├── mobile │ ├── Amqp.Lite │ │ ├── Address.cs │ │ ├── Amqp.Lite.projitems │ │ ├── Amqp.Lite.shproj │ │ ├── AmqpBitConverter.cs │ │ ├── AmqpException.cs │ │ ├── AmqpObject.cs │ │ ├── ByteBuffer.cs │ │ ├── Connection.cs │ │ ├── Delivery.cs │ │ ├── Framing │ │ │ ├── Accepted.cs │ │ │ ├── AmqpSequence.cs │ │ │ ├── AmqpValue.cs │ │ │ ├── ApplicationProperties.cs │ │ │ ├── Attach.cs │ │ │ ├── Begin.cs │ │ │ ├── Close.cs │ │ │ ├── Codec.cs │ │ │ ├── Data.cs │ │ │ ├── DeliveryAnnotations.cs │ │ │ ├── DeliveryState.cs │ │ │ ├── Detach.cs │ │ │ ├── Dispose.cs │ │ │ ├── End.cs │ │ │ ├── Error.cs │ │ │ ├── Flow.cs │ │ │ ├── Footer.cs │ │ │ ├── Frame.cs │ │ │ ├── Header.cs │ │ │ ├── MessageAnnotations.cs │ │ │ ├── Modified.cs │ │ │ ├── Open.cs │ │ │ ├── Outcome.cs │ │ │ ├── Properties.cs │ │ │ ├── ProtocolHeader.cs │ │ │ ├── Reader.cs │ │ │ ├── Received.cs │ │ │ ├── ReceiverSettleMode.cs │ │ │ ├── Rejected.cs │ │ │ ├── Released.cs │ │ │ ├── SenderSettleMode.cs │ │ │ ├── Source.cs │ │ │ ├── Target.cs │ │ │ └── Transfer.cs │ │ ├── ITransport.cs │ │ ├── Link.cs │ │ ├── LinkedList.cs │ │ ├── Listener │ │ │ ├── AttachContext.cs │ │ │ ├── ConnectionListener.cs │ │ │ ├── ContainerHost.cs │ │ │ ├── Context.cs │ │ │ ├── ContextState.cs │ │ │ ├── DispositionContext.cs │ │ │ ├── FlowContext.cs │ │ │ ├── IAuthenticated.cs │ │ │ ├── IContainer.cs │ │ │ ├── ILinkProcessor.cs │ │ │ ├── IMessageProcessor.cs │ │ │ ├── IRequestProcessor.cs │ │ │ ├── LinkCollection.cs │ │ │ ├── LinkEndpoint.cs │ │ │ ├── ListenerConnection.cs │ │ │ ├── ListenerLink.cs │ │ │ ├── ListenerSession.cs │ │ │ ├── MessageContext.cs │ │ │ ├── RequestContext.cs │ │ │ ├── SaslMechanism.cs │ │ │ ├── SaslPlainMechanism.cs │ │ │ └── X509Identity.cs │ │ ├── Message.cs │ │ ├── MyClass.cs │ │ ├── Net │ │ │ ├── AmqpSettings.cs │ │ │ ├── AsyncPump.cs │ │ │ ├── BufferManager.cs │ │ │ ├── ConnectionFactory.cs │ │ │ ├── ConnectionFactoryBase.cs │ │ │ ├── Fx.cs │ │ │ ├── IAsyncTransport.cs │ │ │ ├── IBufferManager.cs │ │ │ ├── List.cs │ │ │ ├── Map.cs │ │ │ ├── RefCountedByteBuffer.cs │ │ │ ├── ResourceManager.cs │ │ │ ├── SRAmqp.Designer.cs │ │ │ ├── SocketExtensions.cs │ │ │ ├── TaskExtensions.cs │ │ │ ├── TcpSettings.cs │ │ │ ├── TcpTransport.cs │ │ │ ├── TypeExtensions.cs │ │ │ ├── WebSocketTransport.cs │ │ │ └── WrappedByteBuffer.cs │ │ ├── ReceiverLink.cs │ │ ├── SRAmqp.Designer.cs │ │ ├── SRAmqp.resx │ │ ├── Sasl │ │ │ ├── SaslChallenge.cs │ │ │ ├── SaslCode.cs │ │ │ ├── SaslExternalProfile.cs │ │ │ ├── SaslInit.cs │ │ │ ├── SaslMechanisms.cs │ │ │ ├── SaslOutcome.cs │ │ │ ├── SaslPlainProfile.cs │ │ │ ├── SaslProfile.cs │ │ │ └── SaslResponse.cs │ │ ├── SenderLink.cs │ │ ├── SequenceNumber.cs │ │ ├── Session.cs │ │ ├── Trace.cs │ │ ├── Transactions │ │ │ ├── Controller.cs │ │ │ ├── Coordinator.cs │ │ │ ├── Declare.cs │ │ │ ├── Declared.cs │ │ │ ├── Discharge.cs │ │ │ ├── TransactionalState.cs │ │ │ └── TxnCapabilities.cs │ │ └── Types │ │ │ ├── Described.cs │ │ │ ├── DescribedList.cs │ │ │ ├── DescribedMap.cs │ │ │ ├── DescribedValue.cs │ │ │ ├── Descriptor.cs │ │ │ ├── Encoder.cs │ │ │ ├── ErrorCode.cs │ │ │ ├── Fields.cs │ │ │ ├── FixedWidth.cs │ │ │ ├── FormatCode.cs │ │ │ ├── Map.cs │ │ │ ├── RestrictedDescribed.cs │ │ │ └── Symbol.cs │ ├── DeviceProvisioningUtility │ │ ├── DeviceProvisioningUtility.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SasTokenGenerator.cs │ │ └── packages.config │ ├── Droid │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ │ ├── Background.png │ │ │ │ ├── CoffeeFilter.png │ │ │ │ └── icon.png │ │ │ ├── layout │ │ │ │ ├── Tabbar.axml │ │ │ │ └── Toolbar.axml │ │ │ └── values │ │ │ │ └── styles.xml │ │ ├── SmartCoffee.Droid.csproj │ │ └── packages.config │ ├── SmartCoffee.sln │ ├── SmartCoffee │ │ ├── Constants.cs │ │ ├── Pages │ │ │ ├── SmartCoffeePage.xaml │ │ │ └── SmartCoffeePage.xaml.cs │ │ ├── Services │ │ │ └── SmartCoffeeService.cs │ │ ├── SmartCoffee.cs │ │ ├── SmartCoffee.projitems │ │ ├── SmartCoffee.shproj │ │ └── View Models │ │ │ ├── BaseViewModel.cs │ │ │ └── SmartCoffeeViewModel.cs │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ ├── AppIcons.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── Main.cs │ │ ├── Resources │ │ ├── Background.png │ │ └── CoffeeFilter.png │ │ ├── SmartCoffee.iOS.csproj │ │ └── packages.config └── rpi │ ├── IoTFieldGateway.sln │ └── IoTFieldGateway │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png │ ├── CloudMessage.cs │ ├── IoTFieldGateway.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ └── project.json ├── bitrise ├── .gitignore ├── Components │ ├── xamarin.social-1.1.7.info │ ├── xamarin.social-1.1.7.png │ └── xamarin.social-1.1.7 │ │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ └── icons │ │ │ ├── xamarin.social_128x128.png │ │ │ └── xamarin.social_512x512.png │ │ ├── lib │ │ ├── android │ │ │ ├── Xamarin.Auth.Android.dll │ │ │ ├── Xamarin.Mobile.dll │ │ │ └── Xamarin.Social.Android.dll │ │ ├── ios-unified │ │ │ ├── Xamarin.Auth.iOS.dll │ │ │ ├── Xamarin.Mobile.dll │ │ │ └── Xamarin.Social.iOS.dll │ │ └── ios │ │ │ ├── Xamarin.Auth.iOS.dll │ │ │ ├── Xamarin.Mobile.dll │ │ │ └── Xamarin.Social.iOS.dll │ │ └── samples │ │ ├── Xamarin.Social.Sample.Android-Component │ │ ├── Components │ │ │ ├── xamarin.mobile-0.7.4.info │ │ │ ├── xamarin.mobile-0.7.4.png │ │ │ ├── xamarin.mobile-0.7.4 │ │ │ │ ├── component │ │ │ │ │ ├── Details.md │ │ │ │ │ ├── GettingStarted.md │ │ │ │ │ ├── License.md │ │ │ │ │ ├── Manifest.xml │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── xamarin.mobile_128x128.png │ │ │ │ │ │ └── xamarin.mobile_512x512.png │ │ │ │ │ └── screenshots │ │ │ │ │ │ └── screenshot1.jpg │ │ │ │ ├── docs │ │ │ │ │ ├── xamarin.mobile.source │ │ │ │ │ ├── xamarin.mobile.tree │ │ │ │ │ └── xamarin.mobile.zip │ │ │ │ ├── lib │ │ │ │ │ ├── android │ │ │ │ │ │ ├── Xamarin.Mobile.dll │ │ │ │ │ │ └── Xamarin.Mobile.xml │ │ │ │ │ ├── ios-unified │ │ │ │ │ │ ├── Xamarin.Mobile.dll │ │ │ │ │ │ └── Xamarin.Mobile.xml │ │ │ │ │ ├── ios │ │ │ │ │ │ ├── Xamarin.Mobile.dll │ │ │ │ │ │ └── Xamarin.Mobile.xml │ │ │ │ │ ├── winrt │ │ │ │ │ │ ├── Xamarin.Mobile.dll │ │ │ │ │ │ └── Xamarin.Mobile.xml │ │ │ │ │ ├── wp7 │ │ │ │ │ │ ├── Xamarin.Mobile.dll │ │ │ │ │ │ └── Xamarin.Mobile.xml │ │ │ │ │ └── wp8 │ │ │ │ │ │ ├── Xamarin.Mobile.dll │ │ │ │ │ │ └── Xamarin.Mobile.xml │ │ │ │ └── samples │ │ │ │ │ ├── Xamarin.Mobile.Android.Samples │ │ │ │ │ ├── ContactsSample │ │ │ │ │ │ ├── Assets │ │ │ │ │ │ │ └── AboutAssets.txt │ │ │ │ │ │ ├── ContactActivity.cs │ │ │ │ │ │ ├── Contacts Sample.csproj │ │ │ │ │ │ ├── MainActivity.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── Drawable │ │ │ │ │ │ │ └── Icon.png │ │ │ │ │ │ │ ├── Layout │ │ │ │ │ │ │ ├── contact_view.xml │ │ │ │ │ │ │ └── list_item.xml │ │ │ │ │ │ │ ├── Resource.Designer.cs │ │ │ │ │ │ │ └── Values │ │ │ │ │ │ │ └── Strings.xml │ │ │ │ │ ├── GeolocationSample │ │ │ │ │ │ ├── Assets │ │ │ │ │ │ │ └── AboutAssets.txt │ │ │ │ │ │ ├── Geolocation Sample.csproj │ │ │ │ │ │ ├── MainActivity.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── AboutResources.txt │ │ │ │ │ │ │ ├── Resource.designer.cs │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ └── Icon.png │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ └── Main.axml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── Strings.xml │ │ │ │ │ └── MediaPickerSample │ │ │ │ │ │ ├── ImageActivity.cs │ │ │ │ │ │ ├── MainActivity.cs │ │ │ │ │ │ ├── MediaPicker Sample.csproj │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── AboutResources.txt │ │ │ │ │ │ ├── Drawable │ │ │ │ │ │ │ └── Icon.png │ │ │ │ │ │ ├── Layout │ │ │ │ │ │ │ └── Main.axml │ │ │ │ │ │ ├── Resource.Designer.cs │ │ │ │ │ │ └── Values │ │ │ │ │ │ │ └── Strings.xml │ │ │ │ │ │ └── VideoActivity.cs │ │ │ │ │ ├── Xamarin.Mobile.WP.Samples │ │ │ │ │ ├── ContactsSample │ │ │ │ │ │ ├── App.xaml │ │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ │ ├── ApplicationIcon.png │ │ │ │ │ │ ├── Background.png │ │ │ │ │ │ ├── ContactsSample.csproj │ │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ │ │ ├── SplashScreenImage.jpg │ │ │ │ │ │ └── packages.config │ │ │ │ │ ├── GeolocationSample │ │ │ │ │ │ ├── App.xaml │ │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ │ ├── ApplicationIcon.png │ │ │ │ │ │ ├── Background.png │ │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ │ ├── GeolocationSample.csproj │ │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ │ │ ├── SplashScreenImage.jpg │ │ │ │ │ │ └── packages.config │ │ │ │ │ └── MediaPickerSample │ │ │ │ │ │ ├── App.xaml │ │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ │ ├── ApplicationIcon.png │ │ │ │ │ │ ├── Background.png │ │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ │ ├── MediaPickerSample.csproj │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ │ │ ├── SplashScreenImage.jpg │ │ │ │ │ │ └── packages.config │ │ │ │ │ ├── Xamarin.Mobile.WP8.Samples │ │ │ │ │ ├── ContactsSample │ │ │ │ │ │ ├── App.xaml │ │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ │ ├── ApplicationIcon.png │ │ │ │ │ │ ├── Background.png │ │ │ │ │ │ ├── ContactsSample.csproj │ │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ │ │ ├── SplashScreenImage.jpg │ │ │ │ │ │ └── SubmissionInfo │ │ │ │ │ │ │ └── Settings.xml │ │ │ │ │ ├── GeolocationSample │ │ │ │ │ │ ├── App.xaml │ │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ │ ├── ApplicationIcon.png │ │ │ │ │ │ ├── Background.png │ │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ │ ├── GeolocationSample.csproj │ │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ │ │ ├── SplashScreenImage.jpg │ │ │ │ │ │ └── SubmissionInfo │ │ │ │ │ │ │ └── Settings.xml │ │ │ │ │ └── MediaPickerSample │ │ │ │ │ │ ├── App.xaml │ │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ │ ├── ApplicationIcon.png │ │ │ │ │ │ ├── Background.png │ │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ │ ├── MediaPickerSample.csproj │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ │ │ └── SplashScreenImage.jpg │ │ │ │ │ ├── Xamarin.Mobile.WinRT.Samples │ │ │ │ │ ├── GeolocationSample │ │ │ │ │ │ ├── App.xaml │ │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ │ ├── Assets │ │ │ │ │ │ │ ├── Logo.png │ │ │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ │ │ └── StoreLogo.png │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ └── StandardStyles.xaml │ │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ │ ├── GeolocationSample.csproj │ │ │ │ │ │ ├── GeolocationSample_TemporaryKey.pfx │ │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ │ ├── Package.appxmanifest │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── MediaPickerSample │ │ │ │ │ │ ├── App.xaml │ │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ │ ├── Assets │ │ │ │ │ │ ├── Logo.png │ │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ │ └── StoreLogo.png │ │ │ │ │ │ ├── Common │ │ │ │ │ │ └── StandardStyles.xaml │ │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ │ ├── MediaPickerSample.csproj │ │ │ │ │ │ ├── MediaPickerSample_TemporaryKey.pfx │ │ │ │ │ │ ├── Package.appxmanifest │ │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Xamarin.Mobile.iOS-Classic.Samples │ │ │ │ │ ├── ContactsSample-Classic │ │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ │ ├── Contacts Sample-Classic.csproj │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── Main.cs │ │ │ │ │ │ ├── MainView.cs │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ │ └── Default@2x.png │ │ │ │ │ ├── Geolocation-Classic │ │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ │ ├── Geolocation Sample-Classic.csproj │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── Main.cs │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ │ └── Default@2x.png │ │ │ │ │ │ ├── SampleViewController.cs │ │ │ │ │ │ ├── SampleViewController.designer.cs │ │ │ │ │ │ └── SampleViewController.xib │ │ │ │ │ └── MediaPickerSample-Classic │ │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── Main.cs │ │ │ │ │ │ ├── MediaPicker Sample-Classic.csproj │ │ │ │ │ │ ├── MediaPickerSampleViewController.designer.cs │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ └── Default@2x.png │ │ │ │ │ └── Xamarin.Mobile.iOS.Samples │ │ │ │ │ ├── ContactsSample │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ ├── Contacts Sample.csproj │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Main.cs │ │ │ │ │ ├── MainView.cs │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ └── Default@2x.png │ │ │ │ │ ├── Geolocation │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ ├── Geolocation Sample.csproj │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Main.cs │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ └── Default@2x.png │ │ │ │ │ ├── SampleViewController.cs │ │ │ │ │ ├── SampleViewController.designer.cs │ │ │ │ │ └── SampleViewController.xib │ │ │ │ │ └── MediaPickerSample │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Main.cs │ │ │ │ │ ├── MediaPicker Sample.csproj │ │ │ │ │ ├── MediaPickerSampleViewController.designer.cs │ │ │ │ │ └── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ ├── xamarin.mobile-0.7.5.info │ │ │ ├── xamarin.mobile-0.7.5.png │ │ │ └── xamarin.mobile-0.7.5 │ │ │ │ ├── component │ │ │ │ ├── Details.md │ │ │ │ ├── GettingStarted.md │ │ │ │ ├── License.md │ │ │ │ ├── Manifest.xml │ │ │ │ ├── icons │ │ │ │ │ ├── xamarin.mobile_128x128.png │ │ │ │ │ └── xamarin.mobile_512x512.png │ │ │ │ └── screenshots │ │ │ │ │ └── screenshot1.jpg │ │ │ │ ├── lib │ │ │ │ ├── android │ │ │ │ │ └── Xamarin.Mobile.dll │ │ │ │ ├── ios-unified │ │ │ │ │ └── Xamarin.Mobile.dll │ │ │ │ ├── ios │ │ │ │ │ └── Xamarin.Mobile.dll │ │ │ │ ├── winrt │ │ │ │ │ └── Xamarin.Mobile.dll │ │ │ │ └── wp8 │ │ │ │ │ └── Xamarin.Mobile.dll │ │ │ │ └── samples │ │ │ │ ├── Xamarin.Mobile.Android.Samples │ │ │ │ ├── ContactsSample │ │ │ │ │ ├── Assets │ │ │ │ │ │ └── AboutAssets.txt │ │ │ │ │ ├── ContactActivity.cs │ │ │ │ │ ├── Contacts Sample.csproj │ │ │ │ │ ├── MainActivity.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── Drawable │ │ │ │ │ │ └── Icon.png │ │ │ │ │ │ ├── Layout │ │ │ │ │ │ ├── contact_view.xml │ │ │ │ │ │ └── list_item.xml │ │ │ │ │ │ ├── Resource.Designer.cs │ │ │ │ │ │ └── Values │ │ │ │ │ │ └── Strings.xml │ │ │ │ ├── GeolocationSample │ │ │ │ │ ├── Assets │ │ │ │ │ │ └── AboutAssets.txt │ │ │ │ │ ├── Geolocation Sample.csproj │ │ │ │ │ ├── MainActivity.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── AboutResources.txt │ │ │ │ │ │ ├── Resource.designer.cs │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── Icon.png │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── Main.axml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── Strings.xml │ │ │ │ └── MediaPickerSample │ │ │ │ │ ├── ImageActivity.cs │ │ │ │ │ ├── MainActivity.cs │ │ │ │ │ ├── MediaPicker Sample.csproj │ │ │ │ │ ├── Properties │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Resources │ │ │ │ │ ├── AboutResources.txt │ │ │ │ │ ├── Drawable │ │ │ │ │ │ └── Icon.png │ │ │ │ │ ├── Layout │ │ │ │ │ │ └── Main.axml │ │ │ │ │ ├── Resource.Designer.cs │ │ │ │ │ └── Values │ │ │ │ │ │ └── Strings.xml │ │ │ │ │ └── VideoActivity.cs │ │ │ │ ├── Xamarin.Mobile.WP8.Samples │ │ │ │ ├── ContactsSample │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── ApplicationIcon.png │ │ │ │ │ ├── Background.png │ │ │ │ │ ├── ContactsSample.csproj │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ │ ├── SplashScreenImage.jpg │ │ │ │ │ └── SubmissionInfo │ │ │ │ │ │ └── Settings.xml │ │ │ │ ├── GeolocationSample │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── ApplicationIcon.png │ │ │ │ │ ├── Background.png │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ ├── GeolocationSample.csproj │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ │ ├── SplashScreenImage.jpg │ │ │ │ │ └── SubmissionInfo │ │ │ │ │ │ └── Settings.xml │ │ │ │ └── MediaPickerSample │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── ApplicationIcon.png │ │ │ │ │ ├── Background.png │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ ├── MediaPickerSample.csproj │ │ │ │ │ ├── Properties │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ │ └── SplashScreenImage.jpg │ │ │ │ ├── Xamarin.Mobile.WinRT.Samples │ │ │ │ ├── GeolocationSample │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── Assets │ │ │ │ │ │ ├── Logo.png │ │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ │ └── StoreLogo.png │ │ │ │ │ ├── Common │ │ │ │ │ │ └── StandardStyles.xaml │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ ├── GeolocationSample.csproj │ │ │ │ │ ├── GeolocationSample_TemporaryKey.pfx │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ ├── Package.appxmanifest │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── MediaPickerSample │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ └── StoreLogo.png │ │ │ │ │ ├── Common │ │ │ │ │ └── StandardStyles.xaml │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ ├── MediaPickerSample.csproj │ │ │ │ │ ├── MediaPickerSample_TemporaryKey.pfx │ │ │ │ │ ├── Package.appxmanifest │ │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Xamarin.Mobile.iOS-Classic.Samples │ │ │ │ ├── ContactsSample-Classic │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ ├── Contacts Sample-Classic.csproj │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Main.cs │ │ │ │ │ ├── MainView.cs │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── Geolocation-Classic │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ ├── Geolocation Sample-Classic.csproj │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Main.cs │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ └── Default@2x.png │ │ │ │ │ ├── SampleViewController.cs │ │ │ │ │ ├── SampleViewController.designer.cs │ │ │ │ │ └── SampleViewController.xib │ │ │ │ └── MediaPickerSample-Classic │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Main.cs │ │ │ │ │ ├── MediaPicker Sample-Classic.csproj │ │ │ │ │ ├── MediaPickerSampleViewController.designer.cs │ │ │ │ │ └── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ └── Xamarin.Mobile.iOS.Samples │ │ │ │ ├── ContactsSample-Classic │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Contacts Sample-Classic.csproj │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MainView.cs │ │ │ │ └── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── ContactsSample │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Contacts Sample.csproj │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MainView.cs │ │ │ │ └── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── Geolocation-Classic │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Geolocation Sample-Classic.csproj │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── SampleViewController.cs │ │ │ │ ├── SampleViewController.designer.cs │ │ │ │ └── SampleViewController.xib │ │ │ │ ├── Geolocation │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Geolocation Sample.csproj │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── SampleViewController.cs │ │ │ │ ├── SampleViewController.designer.cs │ │ │ │ └── SampleViewController.xib │ │ │ │ ├── MediaPickerSample-Classic │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MediaPicker Sample-Classic.csproj │ │ │ │ ├── MediaPickerSampleViewController.designer.cs │ │ │ │ └── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ └── MediaPickerSample │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MediaPicker Sample.csproj │ │ │ │ ├── MediaPickerSampleViewController.designer.cs │ │ │ │ └── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ └── AndroidManifest.xml │ │ ├── Resources │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable │ │ │ │ └── Icon.png │ │ │ ├── layout │ │ │ │ └── Main.axml │ │ │ └── values │ │ │ │ └── Strings.xml │ │ ├── Xamarin.Social.Sample.Android-Component.csproj │ │ ├── Xamarin.Social.Sample.Android-Component.sln │ │ └── Xamarin.Social.Sample.Android.csproj │ │ ├── Xamarin.Social.Sample.iOS-Classic-Component │ │ ├── AppDelegate.cs │ │ ├── Components │ │ │ ├── xamarin.mobile-0.7.5.info │ │ │ ├── xamarin.mobile-0.7.5.png │ │ │ └── xamarin.mobile-0.7.5 │ │ │ │ ├── component │ │ │ │ ├── Details.md │ │ │ │ ├── GettingStarted.md │ │ │ │ ├── License.md │ │ │ │ ├── Manifest.xml │ │ │ │ ├── icons │ │ │ │ │ ├── xamarin.mobile_128x128.png │ │ │ │ │ └── xamarin.mobile_512x512.png │ │ │ │ └── screenshots │ │ │ │ │ └── screenshot1.jpg │ │ │ │ ├── lib │ │ │ │ ├── android │ │ │ │ │ └── Xamarin.Mobile.dll │ │ │ │ ├── ios-unified │ │ │ │ │ └── Xamarin.Mobile.dll │ │ │ │ ├── ios │ │ │ │ │ └── Xamarin.Mobile.dll │ │ │ │ ├── winrt │ │ │ │ │ └── Xamarin.Mobile.dll │ │ │ │ └── wp8 │ │ │ │ │ └── Xamarin.Mobile.dll │ │ │ │ └── samples │ │ │ │ ├── Xamarin.Mobile.Android.Samples │ │ │ │ ├── ContactsSample │ │ │ │ │ ├── Assets │ │ │ │ │ │ └── AboutAssets.txt │ │ │ │ │ ├── ContactActivity.cs │ │ │ │ │ ├── Contacts Sample.csproj │ │ │ │ │ ├── MainActivity.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── Drawable │ │ │ │ │ │ └── Icon.png │ │ │ │ │ │ ├── Layout │ │ │ │ │ │ ├── contact_view.xml │ │ │ │ │ │ └── list_item.xml │ │ │ │ │ │ ├── Resource.Designer.cs │ │ │ │ │ │ └── Values │ │ │ │ │ │ └── Strings.xml │ │ │ │ ├── GeolocationSample │ │ │ │ │ ├── Assets │ │ │ │ │ │ └── AboutAssets.txt │ │ │ │ │ ├── Geolocation Sample.csproj │ │ │ │ │ ├── MainActivity.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── AboutResources.txt │ │ │ │ │ │ ├── Resource.designer.cs │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── Icon.png │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── Main.axml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── Strings.xml │ │ │ │ └── MediaPickerSample │ │ │ │ │ ├── ImageActivity.cs │ │ │ │ │ ├── MainActivity.cs │ │ │ │ │ ├── MediaPicker Sample.csproj │ │ │ │ │ ├── Properties │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Resources │ │ │ │ │ ├── AboutResources.txt │ │ │ │ │ ├── Drawable │ │ │ │ │ │ └── Icon.png │ │ │ │ │ ├── Layout │ │ │ │ │ │ └── Main.axml │ │ │ │ │ ├── Resource.Designer.cs │ │ │ │ │ └── Values │ │ │ │ │ │ └── Strings.xml │ │ │ │ │ └── VideoActivity.cs │ │ │ │ ├── Xamarin.Mobile.WP8.Samples │ │ │ │ ├── ContactsSample │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── ApplicationIcon.png │ │ │ │ │ ├── Background.png │ │ │ │ │ ├── ContactsSample.csproj │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ │ ├── SplashScreenImage.jpg │ │ │ │ │ └── SubmissionInfo │ │ │ │ │ │ └── Settings.xml │ │ │ │ ├── GeolocationSample │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── ApplicationIcon.png │ │ │ │ │ ├── Background.png │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ ├── GeolocationSample.csproj │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ │ ├── SplashScreenImage.jpg │ │ │ │ │ └── SubmissionInfo │ │ │ │ │ │ └── Settings.xml │ │ │ │ └── MediaPickerSample │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── ApplicationIcon.png │ │ │ │ │ ├── Background.png │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ ├── MediaPickerSample.csproj │ │ │ │ │ ├── Properties │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ │ └── SplashScreenImage.jpg │ │ │ │ ├── Xamarin.Mobile.WinRT.Samples │ │ │ │ ├── GeolocationSample │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── Assets │ │ │ │ │ │ ├── Logo.png │ │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ │ └── StoreLogo.png │ │ │ │ │ ├── Common │ │ │ │ │ │ └── StandardStyles.xaml │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ ├── GeolocationSample.csproj │ │ │ │ │ ├── GeolocationSample_TemporaryKey.pfx │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ ├── Package.appxmanifest │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── MediaPickerSample │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ └── StoreLogo.png │ │ │ │ │ ├── Common │ │ │ │ │ └── StandardStyles.xaml │ │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ │ ├── MainPage.xaml │ │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ │ ├── MediaPickerSample.csproj │ │ │ │ │ ├── MediaPickerSample_TemporaryKey.pfx │ │ │ │ │ ├── Package.appxmanifest │ │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Xamarin.Mobile.iOS-Classic.Samples │ │ │ │ ├── ContactsSample-Classic │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ ├── Contacts Sample-Classic.csproj │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Main.cs │ │ │ │ │ ├── MainView.cs │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── Geolocation-Classic │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ ├── Geolocation Sample-Classic.csproj │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Main.cs │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ │ ├── Default.png │ │ │ │ │ │ └── Default@2x.png │ │ │ │ │ ├── SampleViewController.cs │ │ │ │ │ ├── SampleViewController.designer.cs │ │ │ │ │ └── SampleViewController.xib │ │ │ │ └── MediaPickerSample-Classic │ │ │ │ │ ├── AppDelegate.cs │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Main.cs │ │ │ │ │ ├── MediaPicker Sample-Classic.csproj │ │ │ │ │ ├── MediaPickerSampleViewController.designer.cs │ │ │ │ │ └── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ └── Xamarin.Mobile.iOS.Samples │ │ │ │ ├── ContactsSample-Classic │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Contacts Sample-Classic.csproj │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MainView.cs │ │ │ │ └── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── ContactsSample │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Contacts Sample.csproj │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MainView.cs │ │ │ │ └── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── Geolocation-Classic │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Geolocation Sample-Classic.csproj │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── SampleViewController.cs │ │ │ │ ├── SampleViewController.designer.cs │ │ │ │ └── SampleViewController.xib │ │ │ │ ├── Geolocation │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Geolocation Sample.csproj │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── SampleViewController.cs │ │ │ │ ├── SampleViewController.designer.cs │ │ │ │ └── SampleViewController.xib │ │ │ │ ├── MediaPickerSample-Classic │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MediaPicker Sample-Classic.csproj │ │ │ │ ├── MediaPickerSampleViewController.designer.cs │ │ │ │ └── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ └── MediaPickerSample │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MediaPicker Sample.csproj │ │ │ │ ├── MediaPickerSampleViewController.designer.cs │ │ │ │ └── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ ├── Info.plist │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ └── Default@2x.png │ │ ├── Xamarin.Social.Sample.iOS-Classic-Component.csproj │ │ ├── Xamarin.Social.Sample.iOS-Classic-Component.sln │ │ ├── Xamarin.Social.Sample.iOS-Classic.csproj │ │ ├── Xamarin.Social.Sample.iOS-Component.csproj │ │ └── Xamarin.Social.Sample.iOS.csproj │ │ └── Xamarin.Social.Sample.iOS-Component │ │ ├── AppDelegate.cs │ │ ├── Components │ │ ├── xamarin.mobile-0.7.5.info │ │ ├── xamarin.mobile-0.7.5.png │ │ └── xamarin.mobile-0.7.5 │ │ │ ├── component │ │ │ ├── Details.md │ │ │ ├── GettingStarted.md │ │ │ ├── License.md │ │ │ ├── Manifest.xml │ │ │ ├── icons │ │ │ │ ├── xamarin.mobile_128x128.png │ │ │ │ └── xamarin.mobile_512x512.png │ │ │ └── screenshots │ │ │ │ └── screenshot1.jpg │ │ │ ├── lib │ │ │ ├── android │ │ │ │ └── Xamarin.Mobile.dll │ │ │ ├── ios-unified │ │ │ │ └── Xamarin.Mobile.dll │ │ │ ├── ios │ │ │ │ └── Xamarin.Mobile.dll │ │ │ ├── winrt │ │ │ │ └── Xamarin.Mobile.dll │ │ │ └── wp8 │ │ │ │ └── Xamarin.Mobile.dll │ │ │ └── samples │ │ │ ├── Xamarin.Mobile.Android.Samples │ │ │ ├── ContactsSample │ │ │ │ ├── Assets │ │ │ │ │ └── AboutAssets.txt │ │ │ │ ├── ContactActivity.cs │ │ │ │ ├── Contacts Sample.csproj │ │ │ │ ├── MainActivity.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── Resources │ │ │ │ │ ├── Drawable │ │ │ │ │ └── Icon.png │ │ │ │ │ ├── Layout │ │ │ │ │ ├── contact_view.xml │ │ │ │ │ └── list_item.xml │ │ │ │ │ ├── Resource.Designer.cs │ │ │ │ │ └── Values │ │ │ │ │ └── Strings.xml │ │ │ ├── GeolocationSample │ │ │ │ ├── Assets │ │ │ │ │ └── AboutAssets.txt │ │ │ │ ├── Geolocation Sample.csproj │ │ │ │ ├── MainActivity.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── Resources │ │ │ │ │ ├── AboutResources.txt │ │ │ │ │ ├── Resource.designer.cs │ │ │ │ │ ├── drawable │ │ │ │ │ └── Icon.png │ │ │ │ │ ├── layout │ │ │ │ │ └── Main.axml │ │ │ │ │ └── values │ │ │ │ │ └── Strings.xml │ │ │ └── MediaPickerSample │ │ │ │ ├── ImageActivity.cs │ │ │ │ ├── MainActivity.cs │ │ │ │ ├── MediaPicker Sample.csproj │ │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resources │ │ │ │ ├── AboutResources.txt │ │ │ │ ├── Drawable │ │ │ │ │ └── Icon.png │ │ │ │ ├── Layout │ │ │ │ │ └── Main.axml │ │ │ │ ├── Resource.Designer.cs │ │ │ │ └── Values │ │ │ │ │ └── Strings.xml │ │ │ │ └── VideoActivity.cs │ │ │ ├── Xamarin.Mobile.WP8.Samples │ │ │ ├── ContactsSample │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── ApplicationIcon.png │ │ │ │ ├── Background.png │ │ │ │ ├── ContactsSample.csproj │ │ │ │ ├── MainPage.xaml │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ ├── SplashScreenImage.jpg │ │ │ │ └── SubmissionInfo │ │ │ │ │ └── Settings.xml │ │ │ ├── GeolocationSample │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── ApplicationIcon.png │ │ │ │ ├── Background.png │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ ├── GeolocationSample.csproj │ │ │ │ ├── MainPage.xaml │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AppManifest.xml │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ └── WMAppManifest.xml │ │ │ │ ├── SplashScreenImage.jpg │ │ │ │ └── SubmissionInfo │ │ │ │ │ └── Settings.xml │ │ │ └── MediaPickerSample │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── ApplicationIcon.png │ │ │ │ ├── Background.png │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ ├── MainPage.xaml │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ ├── MediaPickerSample.csproj │ │ │ │ ├── Properties │ │ │ │ ├── AppManifest.xml │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── WMAppManifest.xml │ │ │ │ └── SplashScreenImage.jpg │ │ │ ├── Xamarin.Mobile.WinRT.Samples │ │ │ ├── GeolocationSample │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── Assets │ │ │ │ │ ├── Logo.png │ │ │ │ │ ├── SmallLogo.png │ │ │ │ │ ├── SplashScreen.png │ │ │ │ │ └── StoreLogo.png │ │ │ │ ├── Common │ │ │ │ │ └── StandardStyles.xaml │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ ├── GeolocationSample.csproj │ │ │ │ ├── GeolocationSample_TemporaryKey.pfx │ │ │ │ ├── MainPage.xaml │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ ├── Package.appxmanifest │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ └── MediaPickerSample │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── Assets │ │ │ │ ├── Logo.png │ │ │ │ ├── SmallLogo.png │ │ │ │ ├── SplashScreen.png │ │ │ │ └── StoreLogo.png │ │ │ │ ├── Common │ │ │ │ └── StandardStyles.xaml │ │ │ │ ├── DelegatedCommand.cs │ │ │ │ ├── MainPage.xaml │ │ │ │ ├── MainPage.xaml.cs │ │ │ │ ├── MainPageViewModel.cs │ │ │ │ ├── MediaPickerSample.csproj │ │ │ │ ├── MediaPickerSample_TemporaryKey.pfx │ │ │ │ ├── Package.appxmanifest │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Xamarin.Mobile.iOS-Classic.Samples │ │ │ ├── ContactsSample-Classic │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Contacts Sample-Classic.csproj │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MainView.cs │ │ │ │ └── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ ├── Geolocation-Classic │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Geolocation Sample-Classic.csproj │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ │ ├── SampleViewController.cs │ │ │ │ ├── SampleViewController.designer.cs │ │ │ │ └── SampleViewController.xib │ │ │ └── MediaPickerSample-Classic │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ ├── MediaPicker Sample-Classic.csproj │ │ │ │ ├── MediaPickerSampleViewController.designer.cs │ │ │ │ └── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ └── Xamarin.Mobile.iOS.Samples │ │ │ ├── ContactsSample-Classic │ │ │ ├── AppDelegate.cs │ │ │ ├── Contacts Sample-Classic.csproj │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── MainView.cs │ │ │ └── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ ├── ContactsSample │ │ │ ├── AppDelegate.cs │ │ │ ├── Contacts Sample.csproj │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── MainView.cs │ │ │ └── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ ├── Geolocation-Classic │ │ │ ├── AppDelegate.cs │ │ │ ├── Geolocation Sample-Classic.csproj │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ ├── SampleViewController.cs │ │ │ ├── SampleViewController.designer.cs │ │ │ └── SampleViewController.xib │ │ │ ├── Geolocation │ │ │ ├── AppDelegate.cs │ │ │ ├── Geolocation Sample.csproj │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ ├── SampleViewController.cs │ │ │ ├── SampleViewController.designer.cs │ │ │ └── SampleViewController.xib │ │ │ ├── MediaPickerSample-Classic │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── MediaPicker Sample-Classic.csproj │ │ │ ├── MediaPickerSampleViewController.designer.cs │ │ │ └── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ └── MediaPickerSample │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── MediaPicker Sample.csproj │ │ │ ├── MediaPickerSampleViewController.designer.cs │ │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ └── Default@2x.png │ │ ├── Info.plist │ │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ │ ├── Xamarin.Social.Sample.iOS-Classic-Component.csproj │ │ ├── Xamarin.Social.Sample.iOS-Classic.csproj │ │ ├── Xamarin.Social.Sample.iOS-Component.csproj │ │ ├── Xamarin.Social.Sample.iOS-Component.sln │ │ └── Xamarin.Social.Sample.iOS.csproj ├── Droid │ ├── Appearance_Droid.cs │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ ├── bitbot.png │ │ │ ├── bitrise.png │ │ │ ├── branch.png │ │ │ ├── heart.png │ │ │ ├── hockey.png │ │ │ ├── icon.png │ │ │ ├── ship.png │ │ │ ├── tweet.png │ │ │ ├── xamarin.png │ │ │ └── xtc.png │ │ ├── drawable-xhdpi │ │ │ ├── bitbot.png │ │ │ ├── bitrise.png │ │ │ ├── branch.png │ │ │ ├── heart.png │ │ │ ├── hockey.png │ │ │ ├── icon.png │ │ │ ├── ship.png │ │ │ ├── tweet.png │ │ │ ├── xamarin.png │ │ │ └── xtc.png │ │ ├── drawable-xxhdpi │ │ │ ├── bitbot.png │ │ │ ├── bitrise.png │ │ │ ├── branch.png │ │ │ ├── heart.png │ │ │ ├── hockey.png │ │ │ ├── icon.png │ │ │ ├── ship.png │ │ │ ├── tweet.png │ │ │ ├── xamarin.png │ │ │ └── xtc.png │ │ └── drawable │ │ │ ├── bitbot.png │ │ │ ├── bitrise.png │ │ │ ├── branch.png │ │ │ ├── heart.png │ │ │ ├── hockey.png │ │ │ ├── icon.png │ │ │ ├── ship.png │ │ │ ├── tweet.png │ │ │ ├── xamarin.png │ │ │ └── xtc.png │ ├── SocialController_Droid.cs │ ├── XamarinSampleApp.Droid.csproj │ └── packages.config ├── Evolve │ ├── minihack_cover.jpg │ └── minihack_tshirt_tease.jpg ├── README.md ├── UITests │ ├── AppInitializer.cs │ ├── Tests.cs │ ├── XamarinSampleApp.UITests.csproj │ └── packages.config ├── XamarinSampleApp.sln ├── XamarinSampleApp │ ├── IAppearance.cs │ ├── ISocialController.cs │ ├── IntroCarousel.xaml │ ├── IntroCarousel.xaml.cs │ ├── XamarinSampleApp.cs │ ├── XamarinSampleApp.projitems │ └── XamarinSampleApp.shproj └── iOS │ ├── AppDelegate.cs │ ├── Appearance_iOS.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Resources │ ├── Images.xcassets │ │ └── AppIcons.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-167.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-72.png │ │ │ ├── Icon-72@2x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ ├── LaunchScreen.xib │ ├── bitbot@1x.png │ ├── bitbot@2x.png │ ├── bitbot@3x.png │ ├── bitrise@1x.png │ ├── bitrise@2x.png │ ├── bitrise@3x.png │ ├── branch@1x.png │ ├── branch@2x.png │ ├── branch@3x.png │ ├── heart@1x.png │ ├── heart@2x.png │ ├── heart@3x.png │ ├── hockey@1x.png │ ├── hockey@2x.png │ ├── hockey@3x.png │ ├── ship@1x.png │ ├── ship@2x.png │ ├── ship@3x.png │ ├── splash@1x.png │ ├── splash@2x.png │ ├── splash@3x.png │ ├── tweet@1x.png │ ├── tweet@2x.png │ ├── tweet@3x.png │ ├── xamarin@1x.png │ ├── xamarin@2x.png │ ├── xamarin@3x.png │ ├── xtc@1x.png │ ├── xtc@2x.png │ └── xtc@3x.png │ ├── SocialController_iOS.cs │ ├── XamarinSampleApp.iOS.csproj │ └── packages.config ├── hockeyapp └── README.md ├── intel-android-wear ├── README.md ├── challenge1 │ └── XfitFace │ │ ├── Wearable │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ ├── XamarinWatchFaceBackground.png │ │ │ │ └── preview_xfit.png │ │ │ ├── layout │ │ │ │ ├── Main.axml │ │ │ │ ├── RectangleMain.axml │ │ │ │ └── RoundMain.axml │ │ │ ├── mipmap-hdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── Icon.png │ │ │ ├── values │ │ │ │ ├── Color.xml │ │ │ │ ├── Dimens.xml │ │ │ │ └── Strings.xml │ │ │ └── xml │ │ │ │ └── watch_face.xml │ │ ├── Wearable.csproj │ │ ├── XFitWatchfaceService.cs │ │ └── packages.config │ │ └── XfitFace.sln ├── challenge2 │ └── XfitFace │ │ ├── Wearable │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ ├── XamarinWatchFaceBackground.png │ │ │ │ └── preview_xfit.png │ │ │ ├── layout │ │ │ │ ├── Main.axml │ │ │ │ ├── RectangleMain.axml │ │ │ │ └── RoundMain.axml │ │ │ ├── mipmap-hdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── Icon.png │ │ │ ├── values │ │ │ │ ├── Color.xml │ │ │ │ ├── Dimens.xml │ │ │ │ └── Strings.xml │ │ │ └── xml │ │ │ │ └── watch_face.xml │ │ ├── Wearable.csproj │ │ ├── XFitWatchfaceService.cs │ │ ├── XFitWatchfaceServiceGoogleApiClient.cs │ │ ├── XFitWatchfaceServiceStepCount.cs │ │ └── packages.config │ │ └── XfitFace.sln ├── challenge3 │ └── XfitFace │ │ ├── Wearable │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ ├── XamarinWatchFaceBackground.png │ │ │ │ └── preview_xfit.png │ │ │ ├── layout │ │ │ │ ├── Main.axml │ │ │ │ ├── RectangleMain.axml │ │ │ │ ├── RoundMain.axml │ │ │ │ ├── XFitWatchfaceWearableConfigActivity.axml │ │ │ │ └── XFitWatchfaceWearableConfigActivityListItem.axml │ │ │ ├── mipmap-hdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── Icon.png │ │ │ ├── values │ │ │ │ ├── Color.xml │ │ │ │ ├── Dimens.xml │ │ │ │ └── Strings.xml │ │ │ └── xml │ │ │ │ └── watch_face.xml │ │ ├── Wearable.csproj │ │ ├── WearableListItemLayout.cs │ │ ├── XFitWatchfaceConfigHelper.cs │ │ ├── XFitWatchfaceService.cs │ │ ├── XFitWatchfaceServiceConfig.cs │ │ ├── XFitWatchfaceServiceGoogleApiClient.cs │ │ ├── XFitWatchfaceServiceStepCount.cs │ │ ├── XFitWatchfaceWearableConfigActivity.cs │ │ └── packages.config │ │ └── XfitFace.sln ├── challenge4 │ └── XfitFace │ │ ├── Mobile │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Mobile.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── layout │ │ │ │ ├── Main.axml │ │ │ │ └── XFitWatchfaceCompanionConfigActivity.axml │ │ │ ├── mipmap-hdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── Icon.png │ │ │ └── values │ │ │ │ └── Strings.xml │ │ ├── XFitWatchfaceCompanionConfigActivity.cs │ │ ├── XFitWatchfaceConfigHelper.cs │ │ └── packages.config │ │ ├── Wearable │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ ├── XamarinWatchFaceBackground.png │ │ │ │ └── preview_xfit.png │ │ │ ├── layout │ │ │ │ ├── Main.axml │ │ │ │ ├── RectangleMain.axml │ │ │ │ ├── RoundMain.axml │ │ │ │ ├── XFitWatchfaceWearableConfigActivity.axml │ │ │ │ └── XFitWatchfaceWearableConfigActivityListItem.axml │ │ │ ├── mipmap-hdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── Icon.png │ │ │ ├── values │ │ │ │ ├── Color.xml │ │ │ │ ├── Dimens.xml │ │ │ │ └── Strings.xml │ │ │ └── xml │ │ │ │ └── watch_face.xml │ │ ├── Wearable.csproj │ │ ├── WearableListItemLayout.cs │ │ ├── XFitWatchfaceConfigHelper.cs │ │ ├── XFitWatchfaceService.cs │ │ ├── XFitWatchfaceServiceConfig.cs │ │ ├── XFitWatchfaceServiceGoogleApiClient.cs │ │ ├── XFitWatchfaceServiceStepCount.cs │ │ ├── XFitWatchfaceWearableConfigActivity.cs │ │ └── packages.config │ │ └── XfitFace.sln └── images │ ├── chooser.png │ └── watchface.png ├── internet-button ├── .gitattributes ├── .gitignore ├── AzureDeviceInfo.txt ├── EvolveApp │ ├── .vs │ │ └── config │ │ │ └── applicationhost.config │ ├── Console │ │ ├── Console.csproj │ │ ├── Extensions.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── EvolveApp.sln │ ├── EvolveApp │ │ ├── EvolveApp.Droid │ │ │ ├── Assets │ │ │ │ ├── AboutAssets.txt │ │ │ │ ├── SegoeUIBold.ttf │ │ │ │ ├── SegoeUILight.ttf │ │ │ │ └── SegoeUIRegular.ttf │ │ │ ├── EvolveApp.Droid.csproj │ │ │ ├── FixNavBar.cs │ │ │ ├── MainActivity.cs │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── AboutResources.txt │ │ │ │ ├── Resource.Designer.cs │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── ic_cached_white_24dp.png │ │ │ │ │ ├── ic_clear_white.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── notconnected.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── ic_cached_white_24dp.png │ │ │ │ │ ├── ic_clear_white.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── notconnected.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── ic_cached_white_24dp.png │ │ │ │ │ ├── ic_clear_white.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── notconnected.png │ │ │ │ ├── drawable │ │ │ │ │ ├── ic_cached_white_24dp.png │ │ │ │ │ ├── ic_clear_white.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── notconnected.png │ │ │ │ ├── layout │ │ │ │ │ ├── Tabbar.axml │ │ │ │ │ ├── Toolbar.axml │ │ │ │ │ └── splash.axml │ │ │ │ └── values │ │ │ │ │ ├── string.xml │ │ │ │ │ └── styles.xml │ │ │ ├── StyledButtonRenderer.cs │ │ │ ├── StyledLabelRenderer.cs │ │ │ └── packages.config │ │ ├── EvolveApp.UWP │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ ├── Fonts │ │ │ │ │ ├── SegoeUILight.ttf │ │ │ │ │ └── SegoeUIRegular.ttf │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ │ ├── Square71x71Logo.scale-100.png │ │ │ │ ├── Square71x71Logo.scale-200.png │ │ │ │ ├── Square71x71Logo.scale-400.png │ │ │ │ ├── StoreLogo.png │ │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── EvolveApp.UWP.csproj │ │ │ ├── EvolveApp.UWP.nuget.targets │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Default.rd.xml │ │ │ ├── StyledButtonRenderer.cs │ │ │ ├── StyledLabelRenderer.cs │ │ │ ├── Windows_TemporaryKey.pfx │ │ │ ├── ic_cached_white_24dp.png │ │ │ ├── ic_clear_white.png │ │ │ ├── project.json │ │ │ └── project.lock.json │ │ ├── EvolveApp.WinPhone │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ ├── Logo.scale-240.png │ │ │ │ ├── SmallLogo.scale-240.png │ │ │ │ ├── SplashScreen.scale-240.png │ │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ │ ├── StoreLogo.scale-240.png │ │ │ │ └── WideLogo.scale-240.png │ │ │ ├── EvolveApp.WinPhone.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ │ ├── EvolveApp.Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ ├── Logo.scale-100.png │ │ │ │ ├── SmallLogo.scale-100.png │ │ │ │ ├── SplashScreen.scale-100.png │ │ │ │ └── StoreLogo.scale-100.png │ │ │ ├── EvolveApp.Windows.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Windows_TemporaryKey.pfx │ │ │ └── packages.config │ │ ├── EvolveApp.iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Encryptor.cs │ │ │ ├── Entitlements.plist │ │ │ ├── EvolveApp.iOS.csproj │ │ │ ├── Info.plist │ │ │ ├── LoginEntryRenderer.cs │ │ │ ├── Main.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── Fonts │ │ │ │ │ └── SegoeUIBold.ttf │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-Small-40.png │ │ │ │ ├── Icon-Small-40@2x.png │ │ │ │ ├── Icon-Small-40@3x.png │ │ │ │ ├── Icon-Small.png │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ ├── SegoeUIBold.ttf │ │ │ │ ├── SegoeUILight.ttf │ │ │ │ ├── SegoeUIRegular.ttf │ │ │ │ ├── ic_cached_white_24dp.png │ │ │ │ ├── ic_cached_white_24dp@2x.png │ │ │ │ ├── ic_cached_white_24dp@3x.png │ │ │ │ ├── ic_clear_white.png │ │ │ │ ├── ic_clear_white_2x.png │ │ │ │ ├── ic_clear_white_3x.png │ │ │ │ ├── notconnected.png │ │ │ │ ├── xamarin_logo@1x.png │ │ │ │ ├── xamarin_logo@2x.png │ │ │ │ └── xamarin_logo@3x.png │ │ │ ├── Style.css │ │ │ ├── StyledButtonRenderer.cs │ │ │ ├── StyledLabelRenderer.cs │ │ │ ├── iTunesArtwork │ │ │ ├── iTunesArtwork@2x │ │ │ └── packages.config │ │ └── EvolveApp │ │ │ ├── Binaries │ │ │ ├── followme.bin │ │ │ ├── rgbled.bin │ │ │ ├── shakeled.bin │ │ │ └── simonsays.bin │ │ │ ├── EvolveApp.csproj │ │ │ ├── Helpers │ │ │ ├── AppColors.cs │ │ │ ├── AppSettings.cs │ │ │ └── InternetButtonHelper.cs │ │ │ ├── Interfaces │ │ │ └── IEncryptor.cs │ │ │ ├── Models │ │ │ ├── SimonSaysActivity.cs │ │ │ └── SimonSaysColors.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── ViewModels │ │ │ ├── BaseViewModel.cs │ │ │ ├── ChangeLEDColorViewModel.cs │ │ │ ├── DeviceLandingPageViewModel.cs │ │ │ ├── LoginViewModel.cs │ │ │ ├── NewUserSignUpViewModel.cs │ │ │ ├── ScanDeviceViewModel.cs │ │ │ └── SimonSaysViewModel.cs │ │ │ ├── Views │ │ │ ├── Controls │ │ │ │ ├── DashboardWidget.cs │ │ │ │ ├── LoginButton.cs │ │ │ │ ├── LoginEntry.cs │ │ │ │ ├── StyledButton.cs │ │ │ │ └── StyledLabel.cs │ │ │ └── Pages │ │ │ │ ├── ChangeLEDColorPage.cs │ │ │ │ ├── DeviceLandingPage.cs │ │ │ │ ├── NewUserSignUpPage.cs │ │ │ │ ├── ReusableLoginPage.cs │ │ │ │ └── SimonSaysPage.cs │ │ │ └── packages.config │ ├── Shared │ │ ├── App.cs │ │ ├── LoginPage.cs │ │ ├── ScanDevicePage.cs │ │ ├── Shared.projitems │ │ └── Shared.shproj │ ├── UITests │ │ ├── AppInitializer.cs │ │ ├── ExtensionMethods.cs │ │ ├── Pages │ │ │ ├── BasePage.cs │ │ │ ├── DeviceLandingPage.cs │ │ │ ├── ScanDevicePage.cs │ │ │ └── SimonSaysPage.cs │ │ ├── Tests.cs │ │ ├── Tests │ │ │ ├── AbstractSetup.cs │ │ │ └── SimonSaysTests.cs │ │ ├── UITests.csproj │ │ └── packages.config │ └── libs │ │ ├── TextStyles.Android.dll │ │ ├── TextStyles.Core.dll │ │ └── TextStyles.iOS.dll ├── README.md ├── images │ ├── azure │ │ ├── GetConnectionString.png │ │ ├── NewEventHub.png │ │ ├── createNewEventHub.png │ │ ├── particlelogin.png │ │ ├── particlewebhookcreate.png │ │ ├── receivedMessages.png │ │ ├── selectConfigure.png │ │ ├── sharedAccessPolicies.png │ │ └── viewEventHub.png │ ├── droid_login.png │ ├── droid_rgbled.png │ ├── droid_scanDevice.png │ ├── droid_signup.png │ ├── droid_simonSaysOverview.png │ ├── droid_simonStart.png │ ├── droid_submitMove.png │ ├── iOS_login.PNG │ ├── iOS_rgbled.PNG │ ├── iOS_scandevice.PNG │ ├── iOS_signup.PNG │ ├── iOS_simonsaysoverview.PNG │ ├── iOS_simonsaysstart.PNG │ ├── iOS_simonsayssubmitmove.PNG │ ├── master.sketch │ ├── readme │ │ ├── Login.png │ │ ├── ScanDevice.png │ │ ├── SignUp.png │ │ ├── SimonSays_Overview.png │ │ ├── SimonSays_Start.png │ │ └── SimonSays_Submit.png │ ├── wp_login.png │ ├── wp_rgbled.png │ ├── wp_rgbledoverview.png │ ├── wp_scandevice.png │ ├── wp_signup.png │ ├── wp_simonesubmit.png │ ├── wp_simonsaysoverview.png │ └── wp_simonsaysstart.png ├── test.json └── webhook.json ├── microsoft-cognitive-services ├── .gitattributes ├── .gitignore ├── Android.md ├── README.md ├── UWP.md ├── iOS.md ├── images │ └── iOS.png └── solutions │ ├── AndroidApp │ ├── AndroidApp.csproj │ ├── Assets │ │ └── AboutAssets.txt │ ├── BitmapHelper.cs │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable │ │ │ └── Icon.png │ │ ├── layout │ │ │ └── Main.axml │ │ └── values │ │ │ └── Strings.xml │ ├── app.config │ └── packages.config │ ├── SharedProject │ ├── Core.cs │ ├── SharedProject.projitems │ └── SharedProject.shproj │ ├── WindowsApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── WindowsApp.csproj │ └── project.json │ ├── XamarinPlayground.sln │ └── iOSApp │ ├── AppDelegate.cs │ ├── Assets.xcassets │ ├── AppIcons.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Entitlements.plist │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Main.cs │ ├── Main.storyboard │ ├── ViewController.cs │ ├── ViewController.designer.cs │ ├── iOSApp.csproj │ └── packages.config ├── philips-hue ├── .gitignore ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── Helpers │ │ └── Settings.cs │ ├── HuesMiniHack.Droid.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ ├── icon.png │ │ │ ├── tabbar_bridge.png │ │ │ └── tabbar_light.png │ │ ├── layout │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ └── values │ │ │ └── styles.xml │ └── packages.config ├── HuesMiniHack.sln ├── HuesMiniHack │ ├── Helpers │ │ └── Settings.cs │ ├── HuesMiniHack.cs │ ├── HuesMiniHack.projitems │ ├── HuesMiniHack.shproj │ ├── ViewModels │ │ ├── BaseViewModel.cs │ │ ├── BridgeRegisterViewModel.cs │ │ ├── BridgeViewModel.cs │ │ ├── LightViewModel.cs │ │ └── LightsViewModel.cs │ └── Views │ │ ├── BridgePage.xaml │ │ ├── BridgePage.xaml.cs │ │ ├── BridgeRegisterPage.xaml │ │ ├── BridgeRegisterPage.xaml.cs │ │ ├── LightPage.xaml │ │ ├── LightPage.xaml.cs │ │ ├── LightsPage.xaml │ │ ├── LightsPage.xaml.cs │ │ └── RootPage.cs ├── README.md └── iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ ├── AppIcons.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Entitlements.plist │ ├── Helpers │ └── Settings.cs │ ├── HuesMiniHack.iOS.csproj │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Main.cs │ ├── Resources │ ├── link.png │ ├── link@2x.png │ ├── link@3x.png │ ├── splashScreen.png │ ├── splashScreen@2x.png │ ├── splashScreen@3x.png │ ├── tabbar_bridge.png │ ├── tabbar_bridge@2x.png │ ├── tabbar_bridge@3x.png │ ├── tabbar_light.png │ ├── tabbar_light@2x.png │ └── tabbar_light@3x.png │ └── packages.config └── twilio-2016 ├── .gitignore ├── README.md ├── TwilioMiniHack.Droid ├── Assets │ └── AboutAssets.txt ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── layout │ │ ├── Main.axml │ │ └── MessageItemLayout.axml │ ├── mipmap-hdpi │ │ └── Icon.png │ ├── mipmap-mdpi │ │ └── Icon.png │ ├── mipmap-xhdpi │ │ └── Icon.png │ ├── mipmap-xxhdpi │ │ └── Icon.png │ ├── mipmap-xxxhdpi │ │ └── Icon.png │ └── values │ │ └── Strings.xml ├── TwilioMiniHack.Droid.csproj └── packages.config ├── TwilioMiniHack.iOS ├── AppDelegate.cs ├── Assets.xcassets │ ├── AppIcons.appiconset │ │ └── Contents.json │ └── Contents.json ├── Entitlements.plist ├── Info.plist ├── LaunchScreen.storyboard ├── Main.cs ├── Main.storyboard ├── MessageCell.cs ├── MessageCell.designer.cs ├── TwilioMiniHack.iOS.csproj ├── ViewController.cs └── ViewController.designer.cs └── TwilioMiniHack.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/README.md -------------------------------------------------------------------------------- /azure-app-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-app-service/README.md -------------------------------------------------------------------------------- /azure-iot-smart-coffee/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/.gitignore -------------------------------------------------------------------------------- /azure-iot-smart-coffee/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/LICENSE -------------------------------------------------------------------------------- /azure-iot-smart-coffee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/README.md -------------------------------------------------------------------------------- /azure-iot-smart-coffee/images/Creating_Azure_IoT_Hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/images/Creating_Azure_IoT_Hub.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/images/Remote_Debugging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/images/Remote_Debugging.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/images/Shared_Access_Policies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/images/Shared_Access_Policies.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/images/smartcoffee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/images/smartcoffee.jpg -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Address.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Amqp.Lite.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Amqp.Lite.projitems -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Amqp.Lite.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Amqp.Lite.shproj -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/AmqpBitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/AmqpBitConverter.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/AmqpException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/AmqpException.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/AmqpObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/AmqpObject.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/ByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/ByteBuffer.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Connection.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Delivery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Delivery.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Accepted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Accepted.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/AmqpSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/AmqpSequence.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/AmqpValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/AmqpValue.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/ApplicationProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/ApplicationProperties.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Attach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Attach.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Begin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Begin.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Close.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Close.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Codec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Codec.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Data.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/DeliveryAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/DeliveryAnnotations.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/DeliveryState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/DeliveryState.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Detach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Detach.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Dispose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Dispose.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/End.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/End.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Error.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Flow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Flow.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Footer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Footer.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Frame.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Header.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/MessageAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/MessageAnnotations.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Modified.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Modified.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Open.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Open.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Outcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Outcome.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Properties.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/ProtocolHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/ProtocolHeader.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Reader.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Received.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Received.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/ReceiverSettleMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/ReceiverSettleMode.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Rejected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Rejected.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Released.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Released.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/SenderSettleMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/SenderSettleMode.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Source.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Target.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Transfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Framing/Transfer.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/ITransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/ITransport.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Link.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/LinkedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/LinkedList.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/AttachContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/AttachContext.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ConnectionListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ConnectionListener.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ContainerHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ContainerHost.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/Context.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ContextState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ContextState.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/DispositionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/DispositionContext.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/FlowContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/FlowContext.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/IAuthenticated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/IAuthenticated.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/IContainer.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ILinkProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ILinkProcessor.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/IMessageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/IMessageProcessor.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/IRequestProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/IRequestProcessor.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/LinkCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/LinkCollection.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/LinkEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/LinkEndpoint.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ListenerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ListenerConnection.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ListenerLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ListenerLink.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ListenerSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/ListenerSession.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/MessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/MessageContext.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/RequestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/RequestContext.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/SaslMechanism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/SaslMechanism.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/SaslPlainMechanism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/SaslPlainMechanism.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/X509Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Listener/X509Identity.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Message.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/MyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/MyClass.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/AmqpSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/AmqpSettings.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/AsyncPump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/AsyncPump.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/BufferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/BufferManager.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/ConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/ConnectionFactory.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/ConnectionFactoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/ConnectionFactoryBase.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/Fx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/Fx.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/IAsyncTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/IAsyncTransport.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/IBufferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/IBufferManager.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/List.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/List.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/Map.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/RefCountedByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/RefCountedByteBuffer.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/ResourceManager.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/SRAmqp.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/SRAmqp.Designer.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/SocketExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/SocketExtensions.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/TaskExtensions.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/TcpSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/TcpSettings.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/TcpTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/TcpTransport.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/TypeExtensions.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/WebSocketTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/WebSocketTransport.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Net/WrappedByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Net/WrappedByteBuffer.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/ReceiverLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/ReceiverLink.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/SRAmqp.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/SRAmqp.Designer.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/SRAmqp.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/SRAmqp.resx -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslChallenge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslChallenge.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslCode.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslExternalProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslExternalProfile.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslInit.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslMechanisms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslMechanisms.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslOutcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslOutcome.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslPlainProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslPlainProfile.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslProfile.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Sasl/SaslResponse.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/SenderLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/SenderLink.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/SequenceNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/SequenceNumber.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Session.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Trace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Trace.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/Controller.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/Coordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/Coordinator.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/Declare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/Declare.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/Declared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/Declared.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/Discharge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/Discharge.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/TransactionalState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/TransactionalState.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/TxnCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Transactions/TxnCapabilities.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Types/Described.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Types/Described.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Types/DescribedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Types/DescribedList.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Types/DescribedMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Types/DescribedMap.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Types/DescribedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Types/DescribedValue.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Types/Descriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Types/Descriptor.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Types/Encoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Types/Encoder.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Types/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Types/ErrorCode.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Types/Fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Types/Fields.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Types/FixedWidth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Types/FixedWidth.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Types/FormatCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Types/FormatCode.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Types/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Types/Map.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Types/RestrictedDescribed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Types/RestrictedDescribed.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Amqp.Lite/Types/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Amqp.Lite/Types/Symbol.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/DeviceProvisioningUtility/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/DeviceProvisioningUtility/Program.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/DeviceProvisioningUtility/SasTokenGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/DeviceProvisioningUtility/SasTokenGenerator.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/DeviceProvisioningUtility/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/DeviceProvisioningUtility/packages.config -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/MainActivity.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Resources/drawable/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Resources/drawable/Background.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Resources/drawable/CoffeeFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Resources/drawable/CoffeeFilter.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/SmartCoffee.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/SmartCoffee.Droid.csproj -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/Droid/packages.config -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/SmartCoffee.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/SmartCoffee.sln -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/SmartCoffee/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/SmartCoffee/Constants.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/SmartCoffee/Pages/SmartCoffeePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/SmartCoffee/Pages/SmartCoffeePage.xaml -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/SmartCoffee/Pages/SmartCoffeePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/SmartCoffee/Pages/SmartCoffeePage.xaml.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/SmartCoffee/Services/SmartCoffeeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/SmartCoffee/Services/SmartCoffeeService.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/SmartCoffee/SmartCoffee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/SmartCoffee/SmartCoffee.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/SmartCoffee/SmartCoffee.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/SmartCoffee/SmartCoffee.projitems -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/SmartCoffee/SmartCoffee.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/SmartCoffee/SmartCoffee.shproj -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/SmartCoffee/View Models/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/SmartCoffee/View Models/BaseViewModel.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/SmartCoffee/View Models/SmartCoffeeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/SmartCoffee/View Models/SmartCoffeeViewModel.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/iOS/Entitlements.plist -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/iOS/Info.plist -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/iOS/Main.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/iOS/Resources/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/iOS/Resources/Background.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/iOS/Resources/CoffeeFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/iOS/Resources/CoffeeFilter.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/iOS/SmartCoffee.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/iOS/SmartCoffee.iOS.csproj -------------------------------------------------------------------------------- /azure-iot-smart-coffee/mobile/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/mobile/iOS/packages.config -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway.sln -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/App.xaml -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/App.xaml.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/Assets/StoreLogo.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/CloudMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/CloudMessage.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/IoTFieldGateway.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/IoTFieldGateway.csproj -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/MainPage.xaml -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/MainPage.xaml.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/Package.appxmanifest -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/Properties/Default.rd.xml -------------------------------------------------------------------------------- /azure-iot-smart-coffee/rpi/IoTFieldGateway/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/azure-iot-smart-coffee/rpi/IoTFieldGateway/project.json -------------------------------------------------------------------------------- /bitrise/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/.gitignore -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7.info -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7.png -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7/component/Details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7/component/Details.md -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7/component/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7/component/GettingStarted.md -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7/component/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7/component/License.md -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7/component/Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7/component/Manifest.xml -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7/lib/android/Xamarin.Auth.Android.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7/lib/android/Xamarin.Auth.Android.dll -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7/lib/android/Xamarin.Mobile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7/lib/android/Xamarin.Mobile.dll -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7/lib/android/Xamarin.Social.Android.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7/lib/android/Xamarin.Social.Android.dll -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7/lib/ios-unified/Xamarin.Auth.iOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7/lib/ios-unified/Xamarin.Auth.iOS.dll -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7/lib/ios-unified/Xamarin.Mobile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7/lib/ios-unified/Xamarin.Mobile.dll -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7/lib/ios-unified/Xamarin.Social.iOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7/lib/ios-unified/Xamarin.Social.iOS.dll -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7/lib/ios/Xamarin.Auth.iOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7/lib/ios/Xamarin.Auth.iOS.dll -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7/lib/ios/Xamarin.Mobile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7/lib/ios/Xamarin.Mobile.dll -------------------------------------------------------------------------------- /bitrise/Components/xamarin.social-1.1.7/lib/ios/Xamarin.Social.iOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Components/xamarin.social-1.1.7/lib/ios/Xamarin.Social.iOS.dll -------------------------------------------------------------------------------- /bitrise/Droid/Appearance_Droid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Appearance_Droid.cs -------------------------------------------------------------------------------- /bitrise/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /bitrise/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/MainActivity.cs -------------------------------------------------------------------------------- /bitrise/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /bitrise/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /bitrise/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /bitrise/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-hdpi/bitbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-hdpi/bitbot.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-hdpi/bitrise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-hdpi/bitrise.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-hdpi/branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-hdpi/branch.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-hdpi/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-hdpi/heart.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-hdpi/hockey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-hdpi/hockey.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-hdpi/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-hdpi/ship.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-hdpi/tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-hdpi/tweet.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-hdpi/xamarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-hdpi/xamarin.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-hdpi/xtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-hdpi/xtc.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xhdpi/bitbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xhdpi/bitbot.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xhdpi/bitrise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xhdpi/bitrise.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xhdpi/branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xhdpi/branch.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xhdpi/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xhdpi/heart.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xhdpi/hockey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xhdpi/hockey.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xhdpi/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xhdpi/ship.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xhdpi/tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xhdpi/tweet.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xhdpi/xamarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xhdpi/xamarin.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xhdpi/xtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xhdpi/xtc.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xxhdpi/bitbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xxhdpi/bitbot.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xxhdpi/bitrise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xxhdpi/bitrise.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xxhdpi/branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xxhdpi/branch.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xxhdpi/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xxhdpi/heart.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xxhdpi/hockey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xxhdpi/hockey.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xxhdpi/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xxhdpi/ship.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xxhdpi/tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xxhdpi/tweet.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xxhdpi/xamarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xxhdpi/xamarin.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable-xxhdpi/xtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable-xxhdpi/xtc.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable/bitbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable/bitbot.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable/bitrise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable/bitrise.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable/branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable/branch.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable/heart.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable/hockey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable/hockey.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable/ship.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable/tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable/tweet.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable/xamarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable/xamarin.png -------------------------------------------------------------------------------- /bitrise/Droid/Resources/drawable/xtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/Resources/drawable/xtc.png -------------------------------------------------------------------------------- /bitrise/Droid/SocialController_Droid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/SocialController_Droid.cs -------------------------------------------------------------------------------- /bitrise/Droid/XamarinSampleApp.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/XamarinSampleApp.Droid.csproj -------------------------------------------------------------------------------- /bitrise/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Droid/packages.config -------------------------------------------------------------------------------- /bitrise/Evolve/minihack_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Evolve/minihack_cover.jpg -------------------------------------------------------------------------------- /bitrise/Evolve/minihack_tshirt_tease.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/Evolve/minihack_tshirt_tease.jpg -------------------------------------------------------------------------------- /bitrise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/README.md -------------------------------------------------------------------------------- /bitrise/UITests/AppInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/UITests/AppInitializer.cs -------------------------------------------------------------------------------- /bitrise/UITests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/UITests/Tests.cs -------------------------------------------------------------------------------- /bitrise/UITests/XamarinSampleApp.UITests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/UITests/XamarinSampleApp.UITests.csproj -------------------------------------------------------------------------------- /bitrise/UITests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/UITests/packages.config -------------------------------------------------------------------------------- /bitrise/XamarinSampleApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/XamarinSampleApp.sln -------------------------------------------------------------------------------- /bitrise/XamarinSampleApp/IAppearance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/XamarinSampleApp/IAppearance.cs -------------------------------------------------------------------------------- /bitrise/XamarinSampleApp/ISocialController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/XamarinSampleApp/ISocialController.cs -------------------------------------------------------------------------------- /bitrise/XamarinSampleApp/IntroCarousel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/XamarinSampleApp/IntroCarousel.xaml -------------------------------------------------------------------------------- /bitrise/XamarinSampleApp/IntroCarousel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/XamarinSampleApp/IntroCarousel.xaml.cs -------------------------------------------------------------------------------- /bitrise/XamarinSampleApp/XamarinSampleApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/XamarinSampleApp/XamarinSampleApp.cs -------------------------------------------------------------------------------- /bitrise/XamarinSampleApp/XamarinSampleApp.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/XamarinSampleApp/XamarinSampleApp.projitems -------------------------------------------------------------------------------- /bitrise/XamarinSampleApp/XamarinSampleApp.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/XamarinSampleApp/XamarinSampleApp.shproj -------------------------------------------------------------------------------- /bitrise/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /bitrise/iOS/Appearance_iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Appearance_iOS.cs -------------------------------------------------------------------------------- /bitrise/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Entitlements.plist -------------------------------------------------------------------------------- /bitrise/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Info.plist -------------------------------------------------------------------------------- /bitrise/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Main.cs -------------------------------------------------------------------------------- /bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-167.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-72.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-72@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-76.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /bitrise/iOS/Resources/bitbot@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/bitbot@1x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/bitbot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/bitbot@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/bitbot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/bitbot@3x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/bitrise@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/bitrise@1x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/bitrise@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/bitrise@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/bitrise@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/bitrise@3x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/branch@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/branch@1x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/branch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/branch@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/branch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/branch@3x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/heart@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/heart@1x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/heart@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/heart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/heart@3x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/hockey@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/hockey@1x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/hockey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/hockey@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/hockey@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/hockey@3x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/ship@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/ship@1x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/ship@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/ship@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/ship@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/ship@3x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/splash@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/splash@1x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/splash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/splash@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/splash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/splash@3x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/tweet@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/tweet@1x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/tweet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/tweet@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/tweet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/tweet@3x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/xamarin@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/xamarin@1x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/xamarin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/xamarin@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/xamarin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/xamarin@3x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/xtc@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/xtc@1x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/xtc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/xtc@2x.png -------------------------------------------------------------------------------- /bitrise/iOS/Resources/xtc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/Resources/xtc@3x.png -------------------------------------------------------------------------------- /bitrise/iOS/SocialController_iOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/SocialController_iOS.cs -------------------------------------------------------------------------------- /bitrise/iOS/XamarinSampleApp.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/XamarinSampleApp.iOS.csproj -------------------------------------------------------------------------------- /bitrise/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/bitrise/iOS/packages.config -------------------------------------------------------------------------------- /hockeyapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/hockeyapp/README.md -------------------------------------------------------------------------------- /intel-android-wear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/README.md -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/MainActivity.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Resources/AboutResources.txt -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Resources/layout/Main.axml -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Resources/layout/RoundMain.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Resources/layout/RoundMain.axml -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Resources/mipmap-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Resources/mipmap-mdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Resources/values/Color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Resources/values/Color.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Resources/values/Dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Resources/values/Dimens.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Resources/values/Strings.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Resources/xml/watch_face.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Resources/xml/watch_face.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/Wearable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/Wearable.csproj -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/XFitWatchfaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/XFitWatchfaceService.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/Wearable/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/Wearable/packages.config -------------------------------------------------------------------------------- /intel-android-wear/challenge1/XfitFace/XfitFace.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge1/XfitFace/XfitFace.sln -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/MainActivity.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Resources/AboutResources.txt -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Resources/layout/Main.axml -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Resources/layout/RoundMain.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Resources/layout/RoundMain.axml -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Resources/mipmap-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Resources/mipmap-mdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Resources/values/Color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Resources/values/Color.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Resources/values/Dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Resources/values/Dimens.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Resources/values/Strings.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Resources/xml/watch_face.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Resources/xml/watch_face.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/Wearable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/Wearable.csproj -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/XFitWatchfaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/XFitWatchfaceService.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/Wearable/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/Wearable/packages.config -------------------------------------------------------------------------------- /intel-android-wear/challenge2/XfitFace/XfitFace.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge2/XfitFace/XfitFace.sln -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/MainActivity.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Resources/AboutResources.txt -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Resources/layout/Main.axml -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Resources/layout/RoundMain.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Resources/layout/RoundMain.axml -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Resources/mipmap-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Resources/mipmap-mdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Resources/values/Color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Resources/values/Color.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Resources/values/Dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Resources/values/Dimens.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Resources/values/Strings.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Resources/xml/watch_face.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Resources/xml/watch_face.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/Wearable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/Wearable.csproj -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/WearableListItemLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/WearableListItemLayout.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/XFitWatchfaceConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/XFitWatchfaceConfigHelper.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/XFitWatchfaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/XFitWatchfaceService.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/XFitWatchfaceServiceConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/XFitWatchfaceServiceConfig.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/Wearable/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/Wearable/packages.config -------------------------------------------------------------------------------- /intel-android-wear/challenge3/XfitFace/XfitFace.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge3/XfitFace/XfitFace.sln -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/MainActivity.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/Mobile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/Mobile.csproj -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/Resources/AboutResources.txt -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/Resources/layout/Main.axml -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/Resources/mipmap-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/Resources/mipmap-mdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/Resources/values/Strings.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/XFitWatchfaceConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/XFitWatchfaceConfigHelper.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Mobile/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Mobile/packages.config -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/MainActivity.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Resources/AboutResources.txt -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Resources/layout/Main.axml -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Resources/layout/RoundMain.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Resources/layout/RoundMain.axml -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Resources/mipmap-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Resources/mipmap-mdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Resources/values/Color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Resources/values/Color.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Resources/values/Dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Resources/values/Dimens.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Resources/values/Strings.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Resources/xml/watch_face.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Resources/xml/watch_face.xml -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/Wearable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/Wearable.csproj -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/WearableListItemLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/WearableListItemLayout.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/XFitWatchfaceConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/XFitWatchfaceConfigHelper.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/XFitWatchfaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/XFitWatchfaceService.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/XFitWatchfaceServiceConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/XFitWatchfaceServiceConfig.cs -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/Wearable/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/Wearable/packages.config -------------------------------------------------------------------------------- /intel-android-wear/challenge4/XfitFace/XfitFace.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/challenge4/XfitFace/XfitFace.sln -------------------------------------------------------------------------------- /intel-android-wear/images/chooser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/images/chooser.png -------------------------------------------------------------------------------- /intel-android-wear/images/watchface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/intel-android-wear/images/watchface.png -------------------------------------------------------------------------------- /internet-button/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/.gitattributes -------------------------------------------------------------------------------- /internet-button/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/.gitignore -------------------------------------------------------------------------------- /internet-button/AzureDeviceInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/AzureDeviceInfo.txt -------------------------------------------------------------------------------- /internet-button/EvolveApp/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /internet-button/EvolveApp/Console/Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/Console/Console.csproj -------------------------------------------------------------------------------- /internet-button/EvolveApp/Console/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/Console/Extensions.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/Console/Program.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/Console/packages.config -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp.sln -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Assets/SegoeUIBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Assets/SegoeUIBold.ttf -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Assets/SegoeUILight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Assets/SegoeUILight.ttf -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Assets/SegoeUIRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Assets/SegoeUIRegular.ttf -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/EvolveApp.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/EvolveApp.Droid.csproj -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/FixNavBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/FixNavBar.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/MainActivity.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Resources/values/string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Resources/values/string.xml -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/StyledButtonRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/StyledButtonRenderer.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/StyledLabelRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/StyledLabelRenderer.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Droid/packages.config -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/App.xaml -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/App.xaml.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/Assets/Fonts/SegoeUILight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/Assets/Fonts/SegoeUILight.ttf -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/EvolveApp.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/EvolveApp.UWP.csproj -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/EvolveApp.UWP.nuget.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/EvolveApp.UWP.nuget.targets -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/MainPage.xaml -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/StyledButtonRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/StyledButtonRenderer.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/StyledLabelRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/StyledLabelRenderer.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/Windows_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/Windows_TemporaryKey.pfx -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/ic_cached_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/ic_cached_white_24dp.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/ic_clear_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/ic_clear_white.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/project.json -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.UWP/project.lock.json -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.WinPhone/App.xaml -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.WinPhone/App.xaml.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.WinPhone/MainPage.xaml -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.WinPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.WinPhone/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.WinPhone/Package.appxmanifest -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.WinPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.WinPhone/packages.config -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/App.xaml -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/App.xaml.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/EvolveApp.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/EvolveApp.Windows.csproj -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/MainPage.xaml -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/MainPage.xaml.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/Package.appxmanifest -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/Windows_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/Windows_TemporaryKey.pfx -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.Windows/packages.config -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Encryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Encryptor.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Entitlements.plist -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/EvolveApp.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/EvolveApp.iOS.csproj -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Info.plist -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/LoginEntryRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/LoginEntryRenderer.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Main.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Default.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/SegoeUIBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/SegoeUIBold.ttf -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/SegoeUILight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/SegoeUILight.ttf -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/SegoeUIRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/SegoeUIRegular.ttf -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/ic_clear_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/ic_clear_white.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/notconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/notconnected.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/xamarin_logo@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/xamarin_logo@1x.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/xamarin_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/xamarin_logo@2x.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/xamarin_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Resources/xamarin_logo@3x.png -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/Style.css -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/StyledButtonRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/StyledButtonRenderer.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/StyledLabelRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/StyledLabelRenderer.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/iTunesArtwork -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp.iOS/packages.config -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Binaries/followme.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Binaries/followme.bin -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Binaries/rgbled.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Binaries/rgbled.bin -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Binaries/shakeled.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Binaries/shakeled.bin -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Binaries/simonsays.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Binaries/simonsays.bin -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/EvolveApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/EvolveApp.csproj -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Helpers/AppColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Helpers/AppColors.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Helpers/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Helpers/AppSettings.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Helpers/InternetButtonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Helpers/InternetButtonHelper.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Interfaces/IEncryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Interfaces/IEncryptor.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Models/SimonSaysActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Models/SimonSaysActivity.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Models/SimonSaysColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Models/SimonSaysColors.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/ViewModels/ScanDeviceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/ViewModels/ScanDeviceViewModel.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/ViewModels/SimonSaysViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/ViewModels/SimonSaysViewModel.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Views/Controls/LoginButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Views/Controls/LoginButton.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Views/Controls/LoginEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Views/Controls/LoginEntry.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Views/Controls/StyledButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Views/Controls/StyledButton.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Views/Controls/StyledLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Views/Controls/StyledLabel.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/Views/Pages/SimonSaysPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/Views/Pages/SimonSaysPage.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/EvolveApp/EvolveApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/EvolveApp/EvolveApp/packages.config -------------------------------------------------------------------------------- /internet-button/EvolveApp/Shared/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/Shared/App.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/Shared/LoginPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/Shared/LoginPage.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/Shared/ScanDevicePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/Shared/ScanDevicePage.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/Shared/Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/Shared/Shared.projitems -------------------------------------------------------------------------------- /internet-button/EvolveApp/Shared/Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/Shared/Shared.shproj -------------------------------------------------------------------------------- /internet-button/EvolveApp/UITests/AppInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/UITests/AppInitializer.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/UITests/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/UITests/ExtensionMethods.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/UITests/Pages/BasePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/UITests/Pages/BasePage.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/UITests/Pages/DeviceLandingPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/UITests/Pages/DeviceLandingPage.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/UITests/Pages/ScanDevicePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/UITests/Pages/ScanDevicePage.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/UITests/Pages/SimonSaysPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/UITests/Pages/SimonSaysPage.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/UITests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/UITests/Tests.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/UITests/Tests/AbstractSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/UITests/Tests/AbstractSetup.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/UITests/Tests/SimonSaysTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/UITests/Tests/SimonSaysTests.cs -------------------------------------------------------------------------------- /internet-button/EvolveApp/UITests/UITests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/UITests/UITests.csproj -------------------------------------------------------------------------------- /internet-button/EvolveApp/UITests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/UITests/packages.config -------------------------------------------------------------------------------- /internet-button/EvolveApp/libs/TextStyles.Android.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/libs/TextStyles.Android.dll -------------------------------------------------------------------------------- /internet-button/EvolveApp/libs/TextStyles.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/libs/TextStyles.Core.dll -------------------------------------------------------------------------------- /internet-button/EvolveApp/libs/TextStyles.iOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/EvolveApp/libs/TextStyles.iOS.dll -------------------------------------------------------------------------------- /internet-button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/README.md -------------------------------------------------------------------------------- /internet-button/images/azure/GetConnectionString.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/azure/GetConnectionString.png -------------------------------------------------------------------------------- /internet-button/images/azure/NewEventHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/azure/NewEventHub.png -------------------------------------------------------------------------------- /internet-button/images/azure/createNewEventHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/azure/createNewEventHub.png -------------------------------------------------------------------------------- /internet-button/images/azure/particlelogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/azure/particlelogin.png -------------------------------------------------------------------------------- /internet-button/images/azure/particlewebhookcreate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/azure/particlewebhookcreate.png -------------------------------------------------------------------------------- /internet-button/images/azure/receivedMessages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/azure/receivedMessages.png -------------------------------------------------------------------------------- /internet-button/images/azure/selectConfigure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/azure/selectConfigure.png -------------------------------------------------------------------------------- /internet-button/images/azure/sharedAccessPolicies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/azure/sharedAccessPolicies.png -------------------------------------------------------------------------------- /internet-button/images/azure/viewEventHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/azure/viewEventHub.png -------------------------------------------------------------------------------- /internet-button/images/droid_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/droid_login.png -------------------------------------------------------------------------------- /internet-button/images/droid_rgbled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/droid_rgbled.png -------------------------------------------------------------------------------- /internet-button/images/droid_scanDevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/droid_scanDevice.png -------------------------------------------------------------------------------- /internet-button/images/droid_signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/droid_signup.png -------------------------------------------------------------------------------- /internet-button/images/droid_simonSaysOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/droid_simonSaysOverview.png -------------------------------------------------------------------------------- /internet-button/images/droid_simonStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/droid_simonStart.png -------------------------------------------------------------------------------- /internet-button/images/droid_submitMove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/droid_submitMove.png -------------------------------------------------------------------------------- /internet-button/images/iOS_login.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/iOS_login.PNG -------------------------------------------------------------------------------- /internet-button/images/iOS_rgbled.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/iOS_rgbled.PNG -------------------------------------------------------------------------------- /internet-button/images/iOS_scandevice.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/iOS_scandevice.PNG -------------------------------------------------------------------------------- /internet-button/images/iOS_signup.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/iOS_signup.PNG -------------------------------------------------------------------------------- /internet-button/images/iOS_simonsaysoverview.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/iOS_simonsaysoverview.PNG -------------------------------------------------------------------------------- /internet-button/images/iOS_simonsaysstart.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/iOS_simonsaysstart.PNG -------------------------------------------------------------------------------- /internet-button/images/iOS_simonsayssubmitmove.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/iOS_simonsayssubmitmove.PNG -------------------------------------------------------------------------------- /internet-button/images/master.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/master.sketch -------------------------------------------------------------------------------- /internet-button/images/readme/Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/readme/Login.png -------------------------------------------------------------------------------- /internet-button/images/readme/ScanDevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/readme/ScanDevice.png -------------------------------------------------------------------------------- /internet-button/images/readme/SignUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/readme/SignUp.png -------------------------------------------------------------------------------- /internet-button/images/readme/SimonSays_Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/readme/SimonSays_Overview.png -------------------------------------------------------------------------------- /internet-button/images/readme/SimonSays_Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/readme/SimonSays_Start.png -------------------------------------------------------------------------------- /internet-button/images/readme/SimonSays_Submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/readme/SimonSays_Submit.png -------------------------------------------------------------------------------- /internet-button/images/wp_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/wp_login.png -------------------------------------------------------------------------------- /internet-button/images/wp_rgbled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/wp_rgbled.png -------------------------------------------------------------------------------- /internet-button/images/wp_rgbledoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/wp_rgbledoverview.png -------------------------------------------------------------------------------- /internet-button/images/wp_scandevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/wp_scandevice.png -------------------------------------------------------------------------------- /internet-button/images/wp_signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/wp_signup.png -------------------------------------------------------------------------------- /internet-button/images/wp_simonesubmit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/wp_simonesubmit.png -------------------------------------------------------------------------------- /internet-button/images/wp_simonsaysoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/wp_simonsaysoverview.png -------------------------------------------------------------------------------- /internet-button/images/wp_simonsaysstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/images/wp_simonsaysstart.png -------------------------------------------------------------------------------- /internet-button/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/test.json -------------------------------------------------------------------------------- /internet-button/webhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/internet-button/webhook.json -------------------------------------------------------------------------------- /microsoft-cognitive-services/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/.gitattributes -------------------------------------------------------------------------------- /microsoft-cognitive-services/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/.gitignore -------------------------------------------------------------------------------- /microsoft-cognitive-services/Android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/Android.md -------------------------------------------------------------------------------- /microsoft-cognitive-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/README.md -------------------------------------------------------------------------------- /microsoft-cognitive-services/UWP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/UWP.md -------------------------------------------------------------------------------- /microsoft-cognitive-services/iOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/iOS.md -------------------------------------------------------------------------------- /microsoft-cognitive-services/images/iOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/images/iOS.png -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/AndroidApp/AndroidApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/AndroidApp/AndroidApp.csproj -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/AndroidApp/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/AndroidApp/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/AndroidApp/BitmapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/AndroidApp/BitmapHelper.cs -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/AndroidApp/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/AndroidApp/MainActivity.cs -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/AndroidApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/AndroidApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/AndroidApp/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/AndroidApp/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/AndroidApp/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/AndroidApp/Resources/layout/Main.axml -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/AndroidApp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/AndroidApp/app.config -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/AndroidApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/AndroidApp/packages.config -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/SharedProject/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/SharedProject/Core.cs -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/SharedProject/SharedProject.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/SharedProject/SharedProject.projitems -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/SharedProject/SharedProject.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/SharedProject/SharedProject.shproj -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/WindowsApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/WindowsApp/App.xaml -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/WindowsApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/WindowsApp/App.xaml.cs -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/WindowsApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/WindowsApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/WindowsApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/WindowsApp/MainPage.xaml -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/WindowsApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/WindowsApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/WindowsApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/WindowsApp/Package.appxmanifest -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/WindowsApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/WindowsApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/WindowsApp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/WindowsApp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/WindowsApp/WindowsApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/WindowsApp/WindowsApp.csproj -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/WindowsApp/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/WindowsApp/project.json -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/XamarinPlayground.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/XamarinPlayground.sln -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/iOSApp/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/iOSApp/AppDelegate.cs -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/iOSApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/iOSApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/iOSApp/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/iOSApp/Entitlements.plist -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/iOSApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/iOSApp/Info.plist -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/iOSApp/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/iOSApp/LaunchScreen.storyboard -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/iOSApp/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/iOSApp/Main.cs -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/iOSApp/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/iOSApp/Main.storyboard -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/iOSApp/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/iOSApp/ViewController.cs -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/iOSApp/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/iOSApp/ViewController.designer.cs -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/iOSApp/iOSApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/iOSApp/iOSApp.csproj -------------------------------------------------------------------------------- /microsoft-cognitive-services/solutions/iOSApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/microsoft-cognitive-services/solutions/iOSApp/packages.config -------------------------------------------------------------------------------- /philips-hue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/.gitignore -------------------------------------------------------------------------------- /philips-hue/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /philips-hue/Droid/Helpers/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Helpers/Settings.cs -------------------------------------------------------------------------------- /philips-hue/Droid/HuesMiniHack.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/HuesMiniHack.Droid.csproj -------------------------------------------------------------------------------- /philips-hue/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/MainActivity.cs -------------------------------------------------------------------------------- /philips-hue/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /philips-hue/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /philips-hue/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /philips-hue/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /philips-hue/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /philips-hue/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /philips-hue/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /philips-hue/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /philips-hue/Droid/Resources/drawable/tabbar_bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Resources/drawable/tabbar_bridge.png -------------------------------------------------------------------------------- /philips-hue/Droid/Resources/drawable/tabbar_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Resources/drawable/tabbar_light.png -------------------------------------------------------------------------------- /philips-hue/Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /philips-hue/Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /philips-hue/Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /philips-hue/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/Droid/packages.config -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack.sln -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/Helpers/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/Helpers/Settings.cs -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/HuesMiniHack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/HuesMiniHack.cs -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/HuesMiniHack.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/HuesMiniHack.projitems -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/HuesMiniHack.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/HuesMiniHack.shproj -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/ViewModels/BridgeRegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/ViewModels/BridgeRegisterViewModel.cs -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/ViewModels/BridgeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/ViewModels/BridgeViewModel.cs -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/ViewModels/LightViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/ViewModels/LightViewModel.cs -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/ViewModels/LightsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/ViewModels/LightsViewModel.cs -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/Views/BridgePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/Views/BridgePage.xaml -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/Views/BridgePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/Views/BridgePage.xaml.cs -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/Views/BridgeRegisterPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/Views/BridgeRegisterPage.xaml -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/Views/BridgeRegisterPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/Views/BridgeRegisterPage.xaml.cs -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/Views/LightPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/Views/LightPage.xaml -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/Views/LightPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/Views/LightPage.xaml.cs -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/Views/LightsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/Views/LightsPage.xaml -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/Views/LightsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/Views/LightsPage.xaml.cs -------------------------------------------------------------------------------- /philips-hue/HuesMiniHack/Views/RootPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/HuesMiniHack/Views/RootPage.cs -------------------------------------------------------------------------------- /philips-hue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/README.md -------------------------------------------------------------------------------- /philips-hue/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /philips-hue/iOS/Assets.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Assets.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /philips-hue/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /philips-hue/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Entitlements.plist -------------------------------------------------------------------------------- /philips-hue/iOS/Helpers/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Helpers/Settings.cs -------------------------------------------------------------------------------- /philips-hue/iOS/HuesMiniHack.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/HuesMiniHack.iOS.csproj -------------------------------------------------------------------------------- /philips-hue/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Info.plist -------------------------------------------------------------------------------- /philips-hue/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /philips-hue/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Main.cs -------------------------------------------------------------------------------- /philips-hue/iOS/Resources/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Resources/link.png -------------------------------------------------------------------------------- /philips-hue/iOS/Resources/link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Resources/link@2x.png -------------------------------------------------------------------------------- /philips-hue/iOS/Resources/link@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Resources/link@3x.png -------------------------------------------------------------------------------- /philips-hue/iOS/Resources/splashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Resources/splashScreen.png -------------------------------------------------------------------------------- /philips-hue/iOS/Resources/splashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Resources/splashScreen@2x.png -------------------------------------------------------------------------------- /philips-hue/iOS/Resources/splashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Resources/splashScreen@3x.png -------------------------------------------------------------------------------- /philips-hue/iOS/Resources/tabbar_bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Resources/tabbar_bridge.png -------------------------------------------------------------------------------- /philips-hue/iOS/Resources/tabbar_bridge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Resources/tabbar_bridge@2x.png -------------------------------------------------------------------------------- /philips-hue/iOS/Resources/tabbar_bridge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Resources/tabbar_bridge@3x.png -------------------------------------------------------------------------------- /philips-hue/iOS/Resources/tabbar_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Resources/tabbar_light.png -------------------------------------------------------------------------------- /philips-hue/iOS/Resources/tabbar_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Resources/tabbar_light@2x.png -------------------------------------------------------------------------------- /philips-hue/iOS/Resources/tabbar_light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/Resources/tabbar_light@3x.png -------------------------------------------------------------------------------- /philips-hue/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/philips-hue/iOS/packages.config -------------------------------------------------------------------------------- /twilio-2016/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/.gitignore -------------------------------------------------------------------------------- /twilio-2016/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/README.md -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/MainActivity.cs -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/Resources/layout/Main.axml -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/Resources/layout/MessageItemLayout.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/Resources/layout/MessageItemLayout.axml -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/Resources/mipmap-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/Resources/mipmap-mdpi/Icon.png -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/Resources/values/Strings.xml -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/TwilioMiniHack.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/TwilioMiniHack.Droid.csproj -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.Droid/packages.config -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.iOS/Entitlements.plist -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.iOS/Info.plist -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.iOS/Main.cs -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.iOS/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.iOS/Main.storyboard -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.iOS/MessageCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.iOS/MessageCell.cs -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.iOS/MessageCell.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.iOS/MessageCell.designer.cs -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.iOS/TwilioMiniHack.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.iOS/TwilioMiniHack.iOS.csproj -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.iOS/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.iOS/ViewController.cs -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.iOS/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.iOS/ViewController.designer.cs -------------------------------------------------------------------------------- /twilio-2016/TwilioMiniHack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/mini-hacks/HEAD/twilio-2016/TwilioMiniHack.sln --------------------------------------------------------------------------------