├── .gitignore ├── CordovaNotificationsArticle ├── .gitignore ├── BackboneToDo.sln ├── BackboneToDo │ ├── .gitignore │ ├── BackboneTodo.jsproj │ ├── FetchRequirements.ps1 │ ├── bower.json │ ├── config.xml │ ├── merges │ │ ├── android │ │ │ └── scripts │ │ │ │ ├── android2.3-jscompat.js │ │ │ │ └── platformOverrides.js │ │ └── windows │ │ │ └── scripts │ │ │ ├── platformOverrides.js │ │ │ └── winstore-jscompat.js │ ├── package.json │ ├── res │ │ ├── icons │ │ │ ├── android │ │ │ │ ├── icon-36-ldpi.png │ │ │ │ ├── icon-48-mdpi.png │ │ │ │ ├── icon-72-hdpi.png │ │ │ │ └── icon-96-xhdpi.png │ │ │ ├── ios │ │ │ │ ├── icon-40-2x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-50-2x.png │ │ │ │ ├── icon-50.png │ │ │ │ ├── icon-57-2x.png │ │ │ │ ├── icon-57.png │ │ │ │ ├── icon-60-2x.png │ │ │ │ ├── icon-60.png │ │ │ │ ├── icon-72-2x.png │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon-76-2x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-small-2x.png │ │ │ │ └── icon-small.png │ │ │ ├── windows8 │ │ │ │ ├── logo.png │ │ │ │ ├── smalllogo.png │ │ │ │ └── storelogo.png │ │ │ └── wp8 │ │ │ │ ├── icon-173-tile.png │ │ │ │ └── icon-62-tile.png │ │ ├── native │ │ │ └── android │ │ │ │ └── ant.properties │ │ └── screens │ │ │ ├── android │ │ │ ├── screen-hdpi-landscape.png │ │ │ ├── screen-hdpi-portrait.png │ │ │ ├── screen-ldpi-landscape.png │ │ │ ├── screen-ldpi-portrait.png │ │ │ ├── screen-mdpi-landscape.png │ │ │ ├── screen-mdpi-portrait.png │ │ │ ├── screen-xhdpi-landscape.png │ │ │ └── screen-xhdpi-portrait.png │ │ │ ├── ios │ │ │ ├── screen-ipad-landscape-2x.png │ │ │ ├── screen-ipad-landscape.png │ │ │ ├── screen-ipad-portrait-2x.png │ │ │ ├── screen-ipad-portrait.png │ │ │ ├── screen-iphone-568h-2x.png │ │ │ ├── screen-iphone-portrait-2x.png │ │ │ └── screen-iphone-portrait.png │ │ │ ├── windows │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-240.png │ │ │ ├── SplashScreenPhone.scale-240.png │ │ │ └── splashscreen.png │ │ │ └── wp8 │ │ │ ├── SplashScreenImage.jpg │ │ │ └── screen-portrait.jpg │ ├── taco.json │ └── www │ │ ├── css │ │ └── index.css │ │ ├── images │ │ ├── checkbox.png │ │ ├── checkbox_checked.png │ │ └── delete.png │ │ ├── index.html │ │ ├── scripts │ │ ├── baseView.js │ │ ├── geolocation.js │ │ ├── index.js │ │ ├── platformOverrides.js │ │ ├── storage.js │ │ ├── todoCollection.js │ │ ├── todoModel.js │ │ └── todoView.js │ │ └── services │ │ └── mobileServices │ │ └── settings │ │ └── services.js ├── LICENSE ├── readme.md ├── readme │ └── register_pns_credentials_azure_portal.png └── service │ ├── api │ └── readme.md │ ├── extensions │ └── readme.md │ ├── package.json │ ├── scheduler │ └── readme.md │ ├── shared │ └── readme.md │ └── table │ ├── TodoItem.json │ ├── readme.md │ └── todoitem.insert.js ├── CordovaUploadImages ├── TodoList-Upload │ ├── TodoList-Upload.sln │ └── TodoList-Upload │ │ ├── Project_Readme.html │ │ ├── TodoList-Upload.jsproj │ │ ├── config.xml │ │ ├── css │ │ └── index.css │ │ ├── index.html │ │ ├── merges │ │ ├── android │ │ │ └── scripts │ │ │ │ ├── android2.3-jscompat.js │ │ │ │ └── platformOverrides.js │ │ └── windows │ │ │ └── scripts │ │ │ ├── platformOverrides.js │ │ │ └── winstore-jscompat.js │ │ ├── res │ │ ├── icons │ │ │ ├── android │ │ │ │ ├── icon-36-ldpi.png │ │ │ │ ├── icon-48-mdpi.png │ │ │ │ ├── icon-72-hdpi.png │ │ │ │ └── icon-96-xhdpi.png │ │ │ ├── ios │ │ │ │ ├── icon-40-2x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-50-2x.png │ │ │ │ ├── icon-50.png │ │ │ │ ├── icon-57-2x.png │ │ │ │ ├── icon-57.png │ │ │ │ ├── icon-60-2x.png │ │ │ │ ├── icon-60.png │ │ │ │ ├── icon-72-2x.png │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon-76-2x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-small-2x.png │ │ │ │ └── icon-small.png │ │ │ ├── windows │ │ │ │ ├── Square150x150Logo.scale-240.png │ │ │ │ ├── Square44x44Logo.scale-240.png │ │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ │ ├── StoreLogo.scale-240.png │ │ │ │ ├── Wide310x150Logo.scale-240.png │ │ │ │ ├── logo.png │ │ │ │ ├── smalllogo.png │ │ │ │ └── storelogo.png │ │ │ └── wp8 │ │ │ │ ├── icon-173-tile.png │ │ │ │ └── icon-62-tile.png │ │ ├── native │ │ │ └── android │ │ │ │ └── ant.properties │ │ └── screens │ │ │ ├── android │ │ │ ├── screen-hdpi-landscape.png │ │ │ ├── screen-hdpi-portrait.png │ │ │ ├── screen-ldpi-landscape.png │ │ │ ├── screen-ldpi-portrait.png │ │ │ ├── screen-mdpi-landscape.png │ │ │ ├── screen-mdpi-portrait.png │ │ │ ├── screen-xhdpi-landscape.png │ │ │ └── screen-xhdpi-portrait.png │ │ │ ├── ios │ │ │ ├── screen-ipad-landscape-2x.png │ │ │ ├── screen-ipad-landscape.png │ │ │ ├── screen-ipad-portrait-2x.png │ │ │ ├── screen-ipad-portrait.png │ │ │ ├── screen-iphone-568h-2x.png │ │ │ ├── screen-iphone-portrait-2x.png │ │ │ └── screen-iphone-portrait.png │ │ │ ├── windows │ │ │ ├── SplashScreen.scale-240.png │ │ │ └── splashscreen.png │ │ │ └── wp8 │ │ │ └── screen-portrait.jpg │ │ └── scripts │ │ ├── index.js │ │ ├── jquery-1.9.1.min.js │ │ └── platformOverrides.js ├── readme.md ├── readme │ ├── device1.png │ └── mobile-blob-storage-app-settings.png └── service │ ├── api │ └── readme.md │ ├── extensions │ └── readme.md │ ├── package.json │ ├── scheduler │ └── readme.md │ ├── shared │ └── readme.md │ └── table │ ├── TodoItem.json │ ├── readme.md │ └── todoitem.insert.js ├── CustomAuthentication ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ └── NuGet.targets ├── CustomAuthClient.Shared │ ├── App.xaml │ ├── App.xaml.cs │ ├── CustomAuthClient.Shared.projitems │ ├── CustomAuthClient.Shared.shproj │ ├── DataModel │ │ ├── LoginRequest.cs │ │ ├── RegistrationRequest.cs │ │ └── TodoItem.cs │ └── MainPage.cs ├── CustomAuthClient.Windows │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ └── StoreLogo.scale-100.png │ ├── Common │ │ ├── QuickStartTask.xaml │ │ └── QuickStartTask.xaml.cs │ ├── CustomAuthClient.Windows.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── CustomAuthClient.WindowsPhone │ ├── 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 │ ├── CustomAuthClient.WindowsPhone.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── CustomAuthMobileService.sln ├── Readme.md └── ServiceBackend │ ├── App_Start │ └── WebApiConfig.cs │ ├── Controllers │ ├── CustomLoginController.cs │ ├── CustomRegistrationController.cs │ └── TodoItemController.cs │ ├── CustomAuthMobileService.csproj │ ├── CustomLoginProvider.cs │ ├── DataObjects │ ├── Account.cs │ ├── CustomLoginProviderUtils.cs │ ├── CustomLoginResult.cs │ ├── LoginRequest.cs │ ├── RegistrationRequest.cs │ └── TodoItem.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ └── MobileServiceContext.cs │ ├── Performance │ └── Microsoft.ServiceBus.MessagingPerformanceCounters.man │ ├── Properties │ ├── AssemblyInfo.cs │ ├── PublishProfiles │ │ └── mobile-todolist-custom-auth.pubxml │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ScheduledJobs │ └── SampleJob.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── GettingStarted ├── Android │ ├── .gitignore │ └── ZUMOAPPNAME │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── libs │ │ ├── android-support-v4.jar │ │ ├── gson-2.2.2.jar │ │ ├── guava-17.0.jar │ │ ├── mobileservices-2.0.1-beta-javadoc.jar │ │ ├── mobileservices-2.0.1-beta-sources.jar │ │ ├── mobileservices-2.0.1-beta.jar │ │ └── thirdpartynotices.rtf │ │ ├── lint.xml │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── activity_to_do.xml │ │ │ └── row_list_to_do.xml │ │ ├── menu │ │ │ └── activity_main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── src │ │ └── com │ │ └── example │ │ └── zumoappname │ │ ├── ToDoActivity.java │ │ ├── ToDoItem.java │ │ └── ToDoItemAdapter.java └── README.md ├── GettingStartedWithData ├── Android │ ├── .gitignore │ └── GetStartedWithData │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── libs │ │ ├── android-support-v4.jar │ │ └── gson-2.2.2.jar │ │ ├── lint.xml │ │ ├── project.properties │ │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── activity_to_do.xml │ │ │ └── row_list_to_do.xml │ │ ├── menu │ │ │ └── activity_main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── src │ │ └── com │ │ └── example │ │ └── GetStartedWithData │ │ ├── ToDoActivity.java │ │ ├── ToDoItem.java │ │ └── ToDoItemAdapter.java ├── AndroidStudio │ ├── .gitignore │ └── GetStartedWithData │ │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── libraries │ │ │ ├── gson_2_3.xml │ │ │ ├── guava_18_0.xml │ │ │ ├── support_annotations_21_0_3.xml │ │ │ └── support_v4_21_0_3.xml │ │ ├── modules.xml │ │ └── scopes │ │ │ └── scope_settings.xml │ │ ├── app │ │ ├── build.gradle │ │ ├── lint.xml │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── GetStartedWithData │ │ │ │ ├── ToDoActivity.java │ │ │ │ ├── ToDoItem.java │ │ │ │ └── ToDoItemAdapter.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ ├── activity_to_do.xml │ │ │ └── row_list_to_do.xml │ │ │ ├── menu │ │ │ └── activity_main.xml │ │ │ ├── values-v11 │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── import-summary.txt │ │ ├── local.properties │ │ └── settings.gradle └── README.md ├── GettingStartedWithPush ├── Android │ ├── .gitignore │ └── GettingStartedWithPush │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-web.png │ │ ├── libs │ │ ├── android-support-v4.jar │ │ ├── gson-2.2.2.jar │ │ ├── guava-17.0.jar │ │ ├── mobileservices-2.0.1-beta-javadoc.jar │ │ ├── mobileservices-2.0.1-beta-sources.jar │ │ ├── mobileservices-2.0.1-beta.jar │ │ ├── notifications-1.0.1-sources.jar │ │ └── notifications-1.0.1.jar │ │ ├── lint.xml │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── activity_to_do.xml │ │ │ └── row_list_to_do.xml │ │ ├── menu │ │ │ └── activity_main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── src │ │ └── com │ │ └── example │ │ └── GettingStartedWithPush │ │ ├── MyHandler.java │ │ ├── ToDoActivity.java │ │ ├── ToDoItem.java │ │ └── ToDoItemAdapter.java ├── AndroidStudio │ ├── .gitignore │ └── GettingStartedWithPush │ │ ├── .idea │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── libraries │ │ │ ├── azure_notifications_handler_1_0_1.xml │ │ │ ├── gson_2_3.xml │ │ │ ├── guava_18_0.xml │ │ │ └── play_services_base_6_5_87.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ │ ├── GettingStartedWithPush.iml │ │ ├── app │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── lint.xml │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── zumoappname │ │ │ │ ├── MyHandler.java │ │ │ │ ├── ToDoActivity.java │ │ │ │ ├── ToDoItem.java │ │ │ │ └── ToDoItemAdapter.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ ├── activity_to_do.xml │ │ │ └── row_list_to_do.xml │ │ │ ├── menu │ │ │ └── activity_main.xml │ │ │ ├── values-v11 │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── import-summary.txt │ │ └── settings.gradle └── README.md ├── GettingStartedWithPushXamarinForms ├── Components │ ├── GCMClient-1.0.info │ ├── GCMClient-1.0.png │ ├── GCMClient-1.0 │ │ ├── component │ │ │ ├── Details.md │ │ │ ├── GettingStarted.md │ │ │ ├── License.md │ │ │ ├── Manifest.xml │ │ │ └── icons │ │ │ │ ├── GCMClient_128x128.png │ │ │ │ └── GCMClient_512x512.png │ │ ├── lib │ │ │ └── android │ │ │ │ └── GCM.Client.dll │ │ └── samples │ │ │ └── Sample │ │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ │ ├── GcmService.cs │ │ │ ├── MainActivity.cs │ │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable │ │ │ │ └── Icon.png │ │ │ ├── layout │ │ │ │ └── Main.axml │ │ │ └── values │ │ │ │ └── Strings.xml │ │ │ ├── Sample.csproj │ │ │ └── Sample.sln │ ├── azure-mobile-services-1.3.1.info │ ├── azure-mobile-services-1.3.1.png │ └── azure-mobile-services-1.3.1 │ │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ ├── icons │ │ │ ├── azure-mobile-services_128x128.png │ │ │ └── azure-mobile-services_512x512.png │ │ └── screenshots │ │ │ ├── WAMS-Create.png │ │ │ ├── WAMS-DataPermissions.png │ │ │ ├── WAMS-EmptyData.png │ │ │ ├── WAMS-Keys.png │ │ │ ├── WAMS-New.PNG │ │ │ ├── WAMS-SQLdb1.png │ │ │ ├── WAMS-SQLdb2.png │ │ │ ├── WAMS-Scheduler2.png │ │ │ ├── WAMS-Script1.png │ │ │ ├── WAMS-Script2.png │ │ │ ├── WAMS-push1.png │ │ │ ├── WAMS-push2.png │ │ │ └── WAMS-userauth.png │ │ ├── docs │ │ ├── azure-mobile-services.source │ │ ├── azure-mobile-services.tree │ │ └── azure-mobile-services.zip │ │ ├── lib │ │ ├── android │ │ │ ├── Microsoft.WindowsAzure.Mobile.Ext.dll │ │ │ ├── Microsoft.WindowsAzure.Mobile.Ext.xml │ │ │ ├── Microsoft.WindowsAzure.Mobile.dll │ │ │ ├── Microsoft.WindowsAzure.Mobile.xml │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Newtonsoft.Json.xml │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Extensions.xml │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ └── System.Net.Http.Primitives.xml │ │ ├── ios-unified │ │ │ ├── Microsoft.WindowsAzure.Mobile.Ext.dll │ │ │ ├── Microsoft.WindowsAzure.Mobile.Ext.xml │ │ │ ├── Microsoft.WindowsAzure.Mobile.dll │ │ │ ├── Microsoft.WindowsAzure.Mobile.xml │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Newtonsoft.Json.xml │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Extensions.xml │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ └── System.Net.Http.Primitives.xml │ │ ├── ios │ │ │ ├── Microsoft.WindowsAzure.Mobile.Ext.dll │ │ │ ├── Microsoft.WindowsAzure.Mobile.Ext.xml │ │ │ ├── Microsoft.WindowsAzure.Mobile.dll │ │ │ ├── Microsoft.WindowsAzure.Mobile.xml │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Newtonsoft.Json.xml │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ ├── System.Net.Http.Extensions.xml │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ └── System.Net.Http.Primitives.xml │ │ └── mobile │ │ │ ├── Microsoft.WindowsAzure.Mobile.dll │ │ │ ├── Microsoft.WindowsAzure.Mobile.xml │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── samples │ │ ├── androidsample │ │ ├── androidsample.sln │ │ └── androidsample │ │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ ├── Activity_To_Do.axml │ │ │ │ └── Row_List_To_Do.axml │ │ │ ├── menu │ │ │ │ └── activity_main.xml │ │ │ ├── values-v11 │ │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ │ └── styles.xml │ │ │ └── values │ │ │ │ ├── Strings.xml │ │ │ │ └── styles.xml │ │ │ ├── ToDoActivity.cs │ │ │ ├── ToDoItem.cs │ │ │ ├── ToDoItemAdapter.cs │ │ │ ├── androidsample.csproj │ │ │ └── app.config │ │ └── iOSsample │ │ ├── iOSsample.sln │ │ └── iOSsample │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainStoryboard_iPad.storyboard │ │ ├── MainStoryboard_iPhone.storyboard │ │ ├── QSTodoListViewController.cs │ │ ├── QSTodoListViewController.designer.cs │ │ ├── QSTodoService.cs │ │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Landscape.png │ │ ├── Default-Landscape@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x.png │ │ ├── Icon.png │ │ └── Icon@2x.png │ │ ├── ToDoItem.cs │ │ ├── app.config │ │ └── iOSsample.csproj ├── Readme.md ├── ToDoAzure.sln └── ToDoAzure │ ├── ToDoAzure.Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── GcmService.cs │ ├── 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 │ │ │ ├── check.png │ │ │ ├── check2x.png │ │ │ ├── icon.png │ │ │ └── plus.png │ ├── ToDoAzure.Droid.csproj │ ├── app.config │ └── packages.config │ ├── ToDoAzure.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ ├── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── checked.png │ │ └── unchecked.png │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── README_FIRST.txt │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── SplashScreenImage.jpg │ ├── ToDoAzure.WinPhone.csproj │ ├── Toolkit.Content │ │ ├── ApplicationBar.Add.png │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ ├── ApplicationBar.Refresh.png │ │ └── ApplicationBar.Select.png │ └── packages.config │ ├── ToDoAzure.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── 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 │ │ ├── checked.png │ │ └── unchecked.png │ ├── ToDoAzure.iOS.csproj │ ├── app.config │ ├── bokeh.png │ ├── iTunesArtwork │ ├── iTunesArtwork@2x │ └── packages.config │ └── ToDoAzure │ ├── App.cs │ ├── Constants.cs │ ├── Data │ └── ToDoItemManager.cs │ ├── Models │ ├── DeviceDetails.cs │ └── ToDoItem.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ToDoAzure.csproj │ ├── ViewModels │ └── ToDoListViewModel.cs │ ├── Views │ ├── CheckBox.xaml │ ├── CheckBox.xaml.cs │ ├── ToDoItemXaml.xaml │ ├── ToDoItemXaml.xaml.cs │ ├── ToDoListXaml.xaml │ └── ToDoListXaml.xaml.cs │ └── packages.config ├── LICENSE.md ├── NetBackendWithTableStorage ├── Readme.md ├── blog20141010.Test │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TableStorageBackedControllerTest.cs │ ├── app.config │ ├── blog20141010.Test.csproj │ └── packages.config ├── blog20141010.sln └── blog20141010 │ ├── App_Start │ └── WebApiConfig.cs │ ├── Controllers │ ├── PersonController.cs │ └── TodoItemController.cs │ ├── DataObjects │ ├── Person.cs │ └── TodoItem.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ └── MobileServiceContext.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ScheduledJobs │ └── SampleJob.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── blog20141010.csproj │ └── packages.config ├── README.md ├── TicTacToe ├── readme.md ├── service-js │ ├── api │ │ ├── getgamesforuser.js │ │ ├── getgamesforuser.json │ │ └── readme.md │ ├── extensions │ │ ├── push.json │ │ └── readme.md │ ├── package.json │ ├── scheduler │ │ └── readme.md │ ├── shared │ │ └── readme.md │ └── table │ │ ├── games.delete.js │ │ ├── games.insert.js │ │ ├── games.json │ │ ├── games.read.js │ │ ├── games.update.js │ │ ├── moves.delete.js │ │ ├── moves.insert.js │ │ ├── moves.json │ │ ├── moves.read.js │ │ ├── moves.update.js │ │ ├── readme.md │ │ ├── userfriends.delete.js │ │ ├── userfriends.insert.js │ │ ├── userfriends.json │ │ ├── userfriends.read.js │ │ ├── userfriends.update.js │ │ ├── users.delete.js │ │ ├── users.insert.js │ │ ├── users.json │ │ ├── users.read.js │ │ └── users.update.js ├── service-net │ └── TicTacToeMobileService │ │ ├── App_Start │ │ └── WebApiConfig.cs │ │ ├── Controllers │ │ ├── GameController.cs │ │ ├── GetGamesController.cs │ │ ├── MoveController.cs │ │ ├── UserController.cs │ │ └── UserFriendsController.cs │ │ ├── DataObjects │ │ ├── Game.cs │ │ ├── GameInfo.cs │ │ ├── Move.cs │ │ ├── User.cs │ │ └── UserFriends.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Models │ │ └── TicTacToeMobileServiceContext.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ ├── mobile-ghogentictactoe1 (2).pubxml │ │ │ ├── mobile-ghogentictactoe1 (3).pubxml │ │ │ ├── mobile-ghogentictactoe1 (4).pubxml │ │ │ └── mobile-ghogentictactoe1.pubxml │ │ ├── TicTacToeMobileService.csproj │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ └── packages.config └── win8 │ ├── TicTacToeCSharp │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ └── StoreLogo.scale-100.png │ ├── Common │ │ └── BooleanToVisibilityConverter.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Script │ │ ├── api │ │ │ └── getgamesforuser.js │ │ ├── azure.err │ │ ├── table │ │ │ ├── channels.delete.js │ │ │ ├── channels.insert.js │ │ │ ├── channels.read.js │ │ │ ├── channels.update.js │ │ │ ├── games.delete.js │ │ │ ├── games.insert.js │ │ │ ├── games.read.js │ │ │ ├── games.update.js │ │ │ ├── moves.delete.js │ │ │ ├── moves.insert.js │ │ │ ├── moves.read.js │ │ │ ├── moves.update.js │ │ │ ├── userchannels.delete.js │ │ │ ├── userchannels.insert.js │ │ │ ├── userchannels.read.js │ │ │ ├── userchannels.update.js │ │ │ ├── userfriends.delete.js │ │ │ ├── userfriends.insert.js │ │ │ ├── userfriends.read.js │ │ │ ├── userfriends.update.js │ │ │ ├── users.delete.js │ │ │ ├── users.insert.js │ │ │ ├── users.read.js │ │ │ └── users.update.js │ │ └── tictactoesetup.ps1 │ ├── TicTacToeCSharp.csproj │ ├── packages.config │ └── services │ │ └── mobile services │ │ └── TicTacToeMobile1000 │ │ └── push.register.cs │ ├── TicTacToeLibraryCSharp │ ├── Cell.cs │ ├── Common │ │ ├── BindableBase.cs │ │ └── DelegateCommand.cs │ ├── ComputerPlayer.cs │ ├── GameProcessor.cs │ ├── HumanPlayer.cs │ ├── IPlayer.cs │ ├── MiniMax.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RemotePlayer.cs │ ├── TicTacToeLibraryCSharp.csproj │ ├── TicTacToeMobileServiceClient.cs │ ├── app.config │ └── packages.config │ └── TicTacToeMobileServices.sln ├── TodoAngularJS ├── .gitignore ├── LICENSE ├── README.md └── TodoSPA │ ├── App │ ├── Scripts │ │ ├── app.js │ │ ├── homeCtrl.js │ │ ├── loginCtrl.js │ │ ├── todoListCtrl.js │ │ └── userDataCtrl.js │ ├── Styles │ │ └── index.css │ └── Views │ │ ├── Home.html │ │ ├── Login.html │ │ ├── TodoList.html │ │ └── UserData.html │ └── index.html ├── TodoListNotifications ├── phonegap │ ├── .cordova │ │ └── config.json │ ├── platforms │ │ ├── android │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ └── www │ │ │ │ │ ├── config.xml │ │ │ │ │ ├── cordova.js │ │ │ │ │ ├── cordova_plugins.js │ │ │ │ │ ├── css │ │ │ │ │ └── index.css │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── img │ │ │ │ │ └── logo.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ ├── MobileServices.Web-1.1.0.min.js │ │ │ │ │ ├── NotificationHub.js │ │ │ │ │ ├── PushNotification.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── jquery-1.9.1.min.js │ │ │ │ │ ├── phonegap.js │ │ │ │ │ ├── plugins │ │ │ │ │ ├── com.phonegap.plugins.PushPlugin │ │ │ │ │ │ └── www │ │ │ │ │ │ │ └── PushNotification.js │ │ │ │ │ └── org.apache.cordova.device │ │ │ │ │ │ └── www │ │ │ │ │ │ └── device.js │ │ │ │ │ ├── res │ │ │ │ │ ├── icon │ │ │ │ │ │ ├── android │ │ │ │ │ │ │ ├── icon-36-ldpi.png │ │ │ │ │ │ │ ├── icon-48-mdpi.png │ │ │ │ │ │ │ ├── icon-72-hdpi.png │ │ │ │ │ │ │ └── icon-96-xhdpi.png │ │ │ │ │ │ ├── bada-wac │ │ │ │ │ │ │ ├── icon-48-type5.png │ │ │ │ │ │ │ ├── icon-50-type3.png │ │ │ │ │ │ │ └── icon-80-type4.png │ │ │ │ │ │ ├── bada │ │ │ │ │ │ │ └── icon-128.png │ │ │ │ │ │ ├── blackberry │ │ │ │ │ │ │ └── icon-80.png │ │ │ │ │ │ ├── ios │ │ │ │ │ │ │ ├── icon-57-2x.png │ │ │ │ │ │ │ ├── icon-57.png │ │ │ │ │ │ │ ├── icon-72-2x.png │ │ │ │ │ │ │ └── icon-72.png │ │ │ │ │ │ ├── tizen │ │ │ │ │ │ │ └── icon-128.png │ │ │ │ │ │ ├── webos │ │ │ │ │ │ │ └── icon-64.png │ │ │ │ │ │ └── windows-phone │ │ │ │ │ │ │ ├── icon-173-tile.png │ │ │ │ │ │ │ ├── icon-48.png │ │ │ │ │ │ │ └── icon-62-tile.png │ │ │ │ │ └── screen │ │ │ │ │ │ ├── android │ │ │ │ │ │ ├── screen-hdpi-landscape.png │ │ │ │ │ │ ├── screen-hdpi-portrait.png │ │ │ │ │ │ ├── screen-ldpi-landscape.png │ │ │ │ │ │ ├── screen-ldpi-portrait.png │ │ │ │ │ │ ├── screen-mdpi-landscape.png │ │ │ │ │ │ ├── screen-mdpi-portrait.png │ │ │ │ │ │ ├── screen-xhdpi-landscape.png │ │ │ │ │ │ └── screen-xhdpi-portrait.png │ │ │ │ │ │ ├── bada-wac │ │ │ │ │ │ ├── screen-type3.png │ │ │ │ │ │ ├── screen-type4.png │ │ │ │ │ │ └── screen-type5.png │ │ │ │ │ │ ├── bada │ │ │ │ │ │ └── screen-portrait.png │ │ │ │ │ │ ├── blackberry │ │ │ │ │ │ └── screen-225.png │ │ │ │ │ │ ├── ios │ │ │ │ │ │ ├── screen-ipad-landscape-2x.png │ │ │ │ │ │ ├── screen-ipad-landscape.png │ │ │ │ │ │ ├── screen-ipad-portrait-2x.png │ │ │ │ │ │ ├── screen-ipad-portrait.png │ │ │ │ │ │ ├── screen-iphone-landscape-2x.png │ │ │ │ │ │ ├── screen-iphone-landscape.png │ │ │ │ │ │ ├── screen-iphone-portrait-2x.png │ │ │ │ │ │ ├── screen-iphone-portrait-568h-2x.png │ │ │ │ │ │ └── screen-iphone-portrait.png │ │ │ │ │ │ ├── tizen │ │ │ │ │ │ └── README.md │ │ │ │ │ │ ├── webos │ │ │ │ │ │ └── screen-64.png │ │ │ │ │ │ └── windows-phone │ │ │ │ │ │ └── screen-portrait.jpg │ │ │ │ │ ├── spec.html │ │ │ │ │ └── spec │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── lib │ │ │ │ │ ├── enc-base64.js │ │ │ │ │ ├── hmac-sha256.js │ │ │ │ │ ├── jQuery │ │ │ │ │ ├── crowddb.htm │ │ │ │ │ └── jquery-2.0.3.js │ │ │ │ │ └── jasmine-1.2.0 │ │ │ │ │ ├── MIT.LICENSE │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ ├── jasmine.css │ │ │ │ │ └── jasmine.js │ │ │ ├── build.xml │ │ │ ├── cordova │ │ │ │ ├── android_sdk_version │ │ │ │ ├── build │ │ │ │ ├── build.bat │ │ │ │ ├── check_reqs │ │ │ │ ├── clean │ │ │ │ ├── clean.bat │ │ │ │ ├── defaults.xml │ │ │ │ ├── lib │ │ │ │ │ ├── android_sdk_version.js │ │ │ │ │ ├── appinfo.js │ │ │ │ │ ├── build.js │ │ │ │ │ ├── check_reqs.js │ │ │ │ │ ├── clean.js │ │ │ │ │ ├── device.js │ │ │ │ │ ├── emulator.js │ │ │ │ │ ├── exec.js │ │ │ │ │ ├── install-device │ │ │ │ │ ├── install-device.bat │ │ │ │ │ ├── install-emulator │ │ │ │ │ ├── install-emulator.bat │ │ │ │ │ ├── list-devices │ │ │ │ │ ├── list-devices.bat │ │ │ │ │ ├── list-emulator-images │ │ │ │ │ ├── list-emulator-images.bat │ │ │ │ │ ├── list-started-emulators │ │ │ │ │ ├── list-started-emulators.bat │ │ │ │ │ ├── log.js │ │ │ │ │ ├── run.js │ │ │ │ │ ├── start-emulator │ │ │ │ │ └── start-emulator.bat │ │ │ │ ├── log │ │ │ │ ├── log.bat │ │ │ │ ├── run │ │ │ │ ├── run.bat │ │ │ │ ├── version │ │ │ │ └── version.bat │ │ │ ├── libs │ │ │ │ ├── android-support-v13.jar │ │ │ │ ├── cordova-3.2.0.jar │ │ │ │ └── gcm.jar │ │ │ ├── local.properties │ │ │ ├── platform_www │ │ │ │ └── cordova.js │ │ │ ├── proguard-project.txt │ │ │ ├── project.properties │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable │ │ │ │ │ └── icon.png │ │ │ │ ├── values │ │ │ │ │ └── strings.xml │ │ │ │ └── xml │ │ │ │ │ └── config.xml │ │ │ └── src │ │ │ │ ├── com │ │ │ │ ├── mobileservices │ │ │ │ │ └── todolist │ │ │ │ │ │ └── todolist.java │ │ │ │ └── plugin │ │ │ │ │ └── gcm │ │ │ │ │ ├── CordovaGCMBroadcastReceiver.java │ │ │ │ │ ├── GCMIntentService.java │ │ │ │ │ ├── PushHandlerActivity.java │ │ │ │ │ └── PushPlugin.java │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── cordova │ │ │ │ └── device │ │ │ │ └── Device.java │ │ ├── ios │ │ │ ├── CordovaLib │ │ │ │ ├── .gitignore │ │ │ │ ├── Classes │ │ │ │ │ ├── CDV.h │ │ │ │ │ ├── CDVAvailability.h │ │ │ │ │ ├── CDVCommandDelegate.h │ │ │ │ │ ├── CDVCommandDelegateImpl.h │ │ │ │ │ ├── CDVCommandDelegateImpl.m │ │ │ │ │ ├── CDVCommandQueue.h │ │ │ │ │ ├── CDVCommandQueue.m │ │ │ │ │ ├── CDVConfigParser.h │ │ │ │ │ ├── CDVConfigParser.m │ │ │ │ │ ├── CDVDebug.h │ │ │ │ │ ├── CDVInvokedUrlCommand.h │ │ │ │ │ ├── CDVInvokedUrlCommand.m │ │ │ │ │ ├── CDVJSON.h │ │ │ │ │ ├── CDVJSON.m │ │ │ │ │ ├── CDVLocalStorage.h │ │ │ │ │ ├── CDVLocalStorage.m │ │ │ │ │ ├── CDVPlugin.h │ │ │ │ │ ├── CDVPlugin.m │ │ │ │ │ ├── CDVPluginResult.h │ │ │ │ │ ├── CDVPluginResult.m │ │ │ │ │ ├── CDVScreenOrientationDelegate.h │ │ │ │ │ ├── CDVShared.h │ │ │ │ │ ├── CDVShared.m │ │ │ │ │ ├── CDVTimer.h │ │ │ │ │ ├── CDVTimer.m │ │ │ │ │ ├── CDVURLProtocol.h │ │ │ │ │ ├── CDVURLProtocol.m │ │ │ │ │ ├── CDVUserAgentUtil.h │ │ │ │ │ ├── CDVUserAgentUtil.m │ │ │ │ │ ├── CDVViewController.h │ │ │ │ │ ├── CDVViewController.m │ │ │ │ │ ├── CDVWebViewDelegate.h │ │ │ │ │ ├── CDVWebViewDelegate.m │ │ │ │ │ ├── CDVWhitelist.h │ │ │ │ │ ├── CDVWhitelist.m │ │ │ │ │ ├── NSArray+Comparisons.h │ │ │ │ │ ├── NSArray+Comparisons.m │ │ │ │ │ ├── NSData+Base64.h │ │ │ │ │ ├── NSData+Base64.m │ │ │ │ │ ├── NSDictionary+Extensions.h │ │ │ │ │ ├── NSDictionary+Extensions.m │ │ │ │ │ ├── NSMutableArray+QueueAdditions.h │ │ │ │ │ ├── NSMutableArray+QueueAdditions.m │ │ │ │ │ ├── UIDevice+Extensions.h │ │ │ │ │ └── UIDevice+Extensions.m │ │ │ │ ├── CordovaLib.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── CordovaLib_Prefix.pch │ │ │ │ ├── VERSION │ │ │ │ └── cordova.js │ │ │ ├── cordova │ │ │ │ ├── build │ │ │ │ ├── build.xcconfig │ │ │ │ ├── check_reqs │ │ │ │ ├── clean │ │ │ │ ├── defaults.xml │ │ │ │ ├── emulate │ │ │ │ ├── lib │ │ │ │ │ ├── copy-www-build-step.sh │ │ │ │ │ ├── install-device │ │ │ │ │ ├── install-emulator │ │ │ │ │ ├── list-devices │ │ │ │ │ ├── list-emulator-images │ │ │ │ │ ├── list-started-emulators │ │ │ │ │ ├── sim.applescript │ │ │ │ │ └── start-emulator │ │ │ │ ├── log │ │ │ │ ├── run │ │ │ │ └── version │ │ │ ├── platform_www │ │ │ │ └── cordova.js │ │ │ ├── todolist.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── todolist │ │ │ │ ├── Classes │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── MainViewController.h │ │ │ │ │ ├── MainViewController.m │ │ │ │ │ └── MainViewController.xib │ │ │ │ ├── Plugins │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── README │ │ │ │ │ ├── com.phonegap.plugins.PushPlugin │ │ │ │ │ │ ├── .DS_Store │ │ │ │ │ │ ├── AppDelegate+notification.h │ │ │ │ │ │ ├── AppDelegate+notification.m │ │ │ │ │ │ ├── PushPlugin.h │ │ │ │ │ │ └── PushPlugin.m │ │ │ │ │ ├── org.apache.cordova.console │ │ │ │ │ │ ├── CDVLogger.h │ │ │ │ │ │ └── CDVLogger.m │ │ │ │ │ └── org.apache.cordova.device │ │ │ │ │ │ ├── CDVDevice.h │ │ │ │ │ │ └── CDVDevice.m │ │ │ │ ├── Resources │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── icon-72.png │ │ │ │ │ │ ├── icon-72@2x.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── icon@2x.png │ │ │ │ │ ├── se.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ └── splash │ │ │ │ │ │ ├── Default-568h@2x~iphone.png │ │ │ │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ │ │ │ ├── Default-Landscape~ipad.png │ │ │ │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ │ │ │ ├── Default-Portrait~ipad.png │ │ │ │ │ │ ├── Default@2x~iphone.png │ │ │ │ │ │ └── Default~iphone.png │ │ │ │ ├── config.xml │ │ │ │ ├── main.m │ │ │ │ ├── todolist-Info.plist │ │ │ │ └── todolist-Prefix.pch │ │ │ └── www │ │ │ │ ├── config.xml │ │ │ │ ├── cordova.js │ │ │ │ ├── cordova_plugins.js │ │ │ │ ├── css │ │ │ │ └── index.css │ │ │ │ ├── icon.png │ │ │ │ ├── img │ │ │ │ └── logo.png │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── MobileServices.Web-1.1.0.min.js │ │ │ │ ├── NotificationHub.js │ │ │ │ ├── PushNotification.js │ │ │ │ ├── index.js │ │ │ │ └── jquery-1.9.1.min.js │ │ │ │ ├── phonegap.js │ │ │ │ ├── plugins │ │ │ │ ├── com.phonegap.plugins.PushPlugin │ │ │ │ │ └── www │ │ │ │ │ │ └── PushNotification.js │ │ │ │ ├── org.apache.cordova.console │ │ │ │ │ └── www │ │ │ │ │ │ ├── console-via-logger.js │ │ │ │ │ │ └── logger.js │ │ │ │ └── org.apache.cordova.device │ │ │ │ │ └── www │ │ │ │ │ └── device.js │ │ │ │ ├── res │ │ │ │ ├── icon │ │ │ │ │ ├── android │ │ │ │ │ │ ├── icon-36-ldpi.png │ │ │ │ │ │ ├── icon-48-mdpi.png │ │ │ │ │ │ ├── icon-72-hdpi.png │ │ │ │ │ │ └── icon-96-xhdpi.png │ │ │ │ │ ├── bada-wac │ │ │ │ │ │ ├── icon-48-type5.png │ │ │ │ │ │ ├── icon-50-type3.png │ │ │ │ │ │ └── icon-80-type4.png │ │ │ │ │ ├── bada │ │ │ │ │ │ └── icon-128.png │ │ │ │ │ ├── blackberry │ │ │ │ │ │ └── icon-80.png │ │ │ │ │ ├── ios │ │ │ │ │ │ ├── icon-57-2x.png │ │ │ │ │ │ ├── icon-57.png │ │ │ │ │ │ ├── icon-72-2x.png │ │ │ │ │ │ └── icon-72.png │ │ │ │ │ ├── tizen │ │ │ │ │ │ └── icon-128.png │ │ │ │ │ ├── webos │ │ │ │ │ │ └── icon-64.png │ │ │ │ │ └── windows-phone │ │ │ │ │ │ ├── icon-173-tile.png │ │ │ │ │ │ ├── icon-48.png │ │ │ │ │ │ └── icon-62-tile.png │ │ │ │ └── screen │ │ │ │ │ ├── android │ │ │ │ │ ├── screen-hdpi-landscape.png │ │ │ │ │ ├── screen-hdpi-portrait.png │ │ │ │ │ ├── screen-ldpi-landscape.png │ │ │ │ │ ├── screen-ldpi-portrait.png │ │ │ │ │ ├── screen-mdpi-landscape.png │ │ │ │ │ ├── screen-mdpi-portrait.png │ │ │ │ │ ├── screen-xhdpi-landscape.png │ │ │ │ │ └── screen-xhdpi-portrait.png │ │ │ │ │ ├── bada-wac │ │ │ │ │ ├── screen-type3.png │ │ │ │ │ ├── screen-type4.png │ │ │ │ │ └── screen-type5.png │ │ │ │ │ ├── bada │ │ │ │ │ └── screen-portrait.png │ │ │ │ │ ├── blackberry │ │ │ │ │ └── screen-225.png │ │ │ │ │ ├── ios │ │ │ │ │ ├── screen-ipad-landscape-2x.png │ │ │ │ │ ├── screen-ipad-landscape.png │ │ │ │ │ ├── screen-ipad-portrait-2x.png │ │ │ │ │ ├── screen-ipad-portrait.png │ │ │ │ │ ├── screen-iphone-landscape-2x.png │ │ │ │ │ ├── screen-iphone-landscape.png │ │ │ │ │ ├── screen-iphone-portrait-2x.png │ │ │ │ │ ├── screen-iphone-portrait-568h-2x.png │ │ │ │ │ └── screen-iphone-portrait.png │ │ │ │ │ ├── tizen │ │ │ │ │ └── README.md │ │ │ │ │ ├── webos │ │ │ │ │ └── screen-64.png │ │ │ │ │ └── windows-phone │ │ │ │ │ └── screen-portrait.jpg │ │ │ │ ├── spec.html │ │ │ │ └── spec │ │ │ │ ├── helper.js │ │ │ │ ├── index.js │ │ │ │ └── lib │ │ │ │ ├── enc-base64.js │ │ │ │ ├── hmac-sha256.js │ │ │ │ ├── jQuery │ │ │ │ ├── crowddb.htm │ │ │ │ └── jquery-2.0.3.js │ │ │ │ └── jasmine-1.2.0 │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ └── jasmine.js │ │ └── wp8 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── ApplicationIcon.png │ │ │ ├── Background.png │ │ │ ├── Images │ │ │ ├── appbar.back.rest.png │ │ │ ├── appbar.close.rest.png │ │ │ ├── appbar.feature.video.rest.png │ │ │ ├── appbar.next.rest.png │ │ │ ├── appbar.save.rest.png │ │ │ └── appbar.stop.rest.png │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Plugins │ │ │ ├── com.phonegap.plugins.PushPlugin │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── PushPlugin.cs │ │ │ ├── org.apache.cordova.console │ │ │ │ └── DebugConsole.cs │ │ │ └── org.apache.cordova.device │ │ │ │ └── Device.cs │ │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ │ ├── SplashScreenImage.jpg │ │ │ ├── VERSION │ │ │ ├── config.xml │ │ │ ├── cordova │ │ │ ├── build.bat │ │ │ ├── clean.bat │ │ │ ├── defaults.xml │ │ │ ├── lib │ │ │ │ ├── CordovaDeploy │ │ │ │ │ ├── CordovaDeploy.sln │ │ │ │ │ └── CordovaDeploy │ │ │ │ │ │ ├── CordovaDeploy.csproj │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ └── app.config │ │ │ │ ├── build.js │ │ │ │ ├── clean.js │ │ │ │ ├── deploy.js │ │ │ │ ├── install-device.bat │ │ │ │ ├── install-emulator.bat │ │ │ │ ├── list-devices.bat │ │ │ │ ├── list-emulator-images.bat │ │ │ │ ├── list-started-emulators.bat │ │ │ │ ├── log.js │ │ │ │ ├── start-emulator.bat │ │ │ │ ├── target-list.js │ │ │ │ ├── win_os_version.js │ │ │ │ └── win_sdk_version.js │ │ │ ├── log.bat │ │ │ ├── run.bat │ │ │ ├── version.bat │ │ │ ├── win_os_version.bat │ │ │ └── win_sdk_version.bat │ │ │ ├── cordovalib │ │ │ ├── BrowserMouseHelper.cs │ │ │ ├── CommandFactory.cs │ │ │ ├── Commands │ │ │ │ └── BaseCommand.cs │ │ │ ├── ConfigHandler.cs │ │ │ ├── ConsoleHelper.cs │ │ │ ├── CordovaCommandCall.cs │ │ │ ├── CordovaView.xaml │ │ │ ├── CordovaView.xaml.cs │ │ │ ├── IBrowserDecorator.cs │ │ │ ├── ImageExifHelper.cs │ │ │ ├── JSON │ │ │ │ └── JsonHelper.cs │ │ │ ├── MimeTypeMapper.cs │ │ │ ├── NativeExecution.cs │ │ │ ├── OrientationHelper.cs │ │ │ ├── PluginResult.cs │ │ │ ├── ScriptCallback.cs │ │ │ └── XHRHelper.cs │ │ │ ├── platform_www │ │ │ └── cordova.js │ │ │ ├── todolist.csproj │ │ │ ├── todolist.sln │ │ │ └── www │ │ │ ├── config.xml │ │ │ ├── cordova.js │ │ │ ├── cordova_plugins.js │ │ │ ├── css │ │ │ └── index.css │ │ │ ├── icon.png │ │ │ ├── img │ │ │ └── logo.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── MobileServices.Web-1.1.0.min.js │ │ │ ├── NotificationHub.js │ │ │ ├── PushNotification.js │ │ │ ├── index.js │ │ │ └── jquery-1.9.1.min.js │ │ │ ├── phonegap.js │ │ │ ├── plugins │ │ │ ├── com.phonegap.plugins.PushPlugin │ │ │ │ └── www │ │ │ │ │ └── PushNotification.js │ │ │ ├── org.apache.cordova.console │ │ │ │ └── www │ │ │ │ │ ├── console-via-logger.js │ │ │ │ │ └── logger.js │ │ │ └── org.apache.cordova.device │ │ │ │ └── www │ │ │ │ └── device.js │ │ │ ├── res │ │ │ ├── icon │ │ │ │ ├── android │ │ │ │ │ ├── icon-36-ldpi.png │ │ │ │ │ ├── icon-48-mdpi.png │ │ │ │ │ ├── icon-72-hdpi.png │ │ │ │ │ └── icon-96-xhdpi.png │ │ │ │ ├── bada-wac │ │ │ │ │ ├── icon-48-type5.png │ │ │ │ │ ├── icon-50-type3.png │ │ │ │ │ └── icon-80-type4.png │ │ │ │ ├── bada │ │ │ │ │ └── icon-128.png │ │ │ │ ├── blackberry │ │ │ │ │ └── icon-80.png │ │ │ │ ├── ios │ │ │ │ │ ├── icon-57-2x.png │ │ │ │ │ ├── icon-57.png │ │ │ │ │ ├── icon-72-2x.png │ │ │ │ │ └── icon-72.png │ │ │ │ ├── tizen │ │ │ │ │ └── icon-128.png │ │ │ │ ├── webos │ │ │ │ │ └── icon-64.png │ │ │ │ └── windows-phone │ │ │ │ │ ├── icon-173-tile.png │ │ │ │ │ ├── icon-48.png │ │ │ │ │ └── icon-62-tile.png │ │ │ └── screen │ │ │ │ ├── android │ │ │ │ ├── screen-hdpi-landscape.png │ │ │ │ ├── screen-hdpi-portrait.png │ │ │ │ ├── screen-ldpi-landscape.png │ │ │ │ ├── screen-ldpi-portrait.png │ │ │ │ ├── screen-mdpi-landscape.png │ │ │ │ ├── screen-mdpi-portrait.png │ │ │ │ ├── screen-xhdpi-landscape.png │ │ │ │ └── screen-xhdpi-portrait.png │ │ │ │ ├── bada-wac │ │ │ │ ├── screen-type3.png │ │ │ │ ├── screen-type4.png │ │ │ │ └── screen-type5.png │ │ │ │ ├── bada │ │ │ │ └── screen-portrait.png │ │ │ │ ├── blackberry │ │ │ │ └── screen-225.png │ │ │ │ ├── ios │ │ │ │ ├── screen-ipad-landscape-2x.png │ │ │ │ ├── screen-ipad-landscape.png │ │ │ │ ├── screen-ipad-portrait-2x.png │ │ │ │ ├── screen-ipad-portrait.png │ │ │ │ ├── screen-iphone-landscape-2x.png │ │ │ │ ├── screen-iphone-landscape.png │ │ │ │ ├── screen-iphone-portrait-2x.png │ │ │ │ ├── screen-iphone-portrait-568h-2x.png │ │ │ │ └── screen-iphone-portrait.png │ │ │ │ ├── tizen │ │ │ │ └── README.md │ │ │ │ ├── webos │ │ │ │ └── screen-64.png │ │ │ │ └── windows-phone │ │ │ │ └── screen-portrait.jpg │ │ │ ├── spec.html │ │ │ └── spec │ │ │ ├── helper.js │ │ │ ├── index.js │ │ │ └── lib │ │ │ ├── enc-base64.js │ │ │ ├── hmac-sha256.js │ │ │ ├── jQuery │ │ │ ├── crowddb.htm │ │ │ └── jquery-2.0.3.js │ │ │ └── jasmine-1.2.0 │ │ │ ├── MIT.LICENSE │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine.css │ │ │ └── jasmine.js │ ├── plugins │ │ ├── android.json │ │ ├── com.phonegap.plugins.PushPlugin │ │ │ ├── .fetch.json │ │ │ ├── Example │ │ │ │ ├── server │ │ │ │ │ ├── pushADM.js │ │ │ │ │ ├── pushAPNS.rb │ │ │ │ │ └── pushGCM.rb │ │ │ │ └── www │ │ │ │ │ ├── PushNotification.js │ │ │ │ │ ├── beep.wav │ │ │ │ │ ├── index.html │ │ │ │ │ └── jquery_1.5.2.min.js │ │ │ ├── MIT-LICENSE │ │ │ ├── README.md │ │ │ ├── plugin.xml │ │ │ ├── spec │ │ │ │ ├── genericpush.tests.js │ │ │ │ ├── html │ │ │ │ │ ├── HtmlReporter.js │ │ │ │ │ ├── HtmlReporterHelpers.js │ │ │ │ │ ├── ReporterView.js │ │ │ │ │ ├── SpecView.js │ │ │ │ │ ├── SuiteView.js │ │ │ │ │ └── TrivialReporter.js │ │ │ │ ├── index.html │ │ │ │ ├── jasmine.css │ │ │ │ ├── jasmine.js │ │ │ │ └── test-runner.js │ │ │ ├── src │ │ │ │ ├── amazon │ │ │ │ │ ├── ADMHandlerActivity.java │ │ │ │ │ ├── ADMMessageHandler.java │ │ │ │ │ └── PushPlugin.java │ │ │ │ ├── android │ │ │ │ │ ├── com │ │ │ │ │ │ └── plugin │ │ │ │ │ │ │ ├── android-support-v13.jar │ │ │ │ │ │ │ └── gcm │ │ │ │ │ │ │ ├── CordovaGCMBroadcastReceiver.java │ │ │ │ │ │ │ ├── GCMIntentService.java │ │ │ │ │ │ │ ├── PushHandlerActivity.java │ │ │ │ │ │ │ └── PushPlugin.java │ │ │ │ │ └── libs │ │ │ │ │ │ └── gcm.jar │ │ │ │ ├── ios │ │ │ │ │ ├── AppDelegate+notification.h │ │ │ │ │ ├── AppDelegate+notification.m │ │ │ │ │ ├── PushPlugin.h │ │ │ │ │ └── PushPlugin.m │ │ │ │ └── wp8 │ │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ │ └── PushPlugin.cs │ │ │ └── www │ │ │ │ └── PushNotification.js │ │ ├── ios.json │ │ ├── org.apache.cordova.console │ │ │ ├── .fetch.json │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── RELEASENOTES.md │ │ │ ├── doc │ │ │ │ └── index.md │ │ │ ├── package.json │ │ │ ├── plugin.xml │ │ │ ├── src │ │ │ │ ├── ios │ │ │ │ │ ├── CDVLogger.h │ │ │ │ │ └── CDVLogger.m │ │ │ │ ├── ubuntu │ │ │ │ │ ├── console.cpp │ │ │ │ │ └── console.h │ │ │ │ └── wp │ │ │ │ │ └── DebugConsole.cs │ │ │ └── www │ │ │ │ ├── console-via-logger.js │ │ │ │ └── logger.js │ │ ├── org.apache.cordova.device │ │ │ ├── .fetch.json │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── RELEASENOTES.md │ │ │ ├── doc │ │ │ │ └── index.md │ │ │ ├── package.json │ │ │ ├── plugin.xml │ │ │ ├── src │ │ │ │ ├── android │ │ │ │ │ └── Device.java │ │ │ │ ├── blackberry10 │ │ │ │ │ └── index.js │ │ │ │ ├── firefoxos │ │ │ │ │ └── DeviceProxy.js │ │ │ │ ├── ios │ │ │ │ │ ├── CDVDevice.h │ │ │ │ │ └── CDVDevice.m │ │ │ │ ├── tizen │ │ │ │ │ └── DeviceProxy.js │ │ │ │ ├── ubuntu │ │ │ │ │ ├── device.cpp │ │ │ │ │ ├── device.h │ │ │ │ │ └── device.js │ │ │ │ ├── windows8 │ │ │ │ │ └── DeviceProxy.js │ │ │ │ └── wp │ │ │ │ │ └── Device.cs │ │ │ └── www │ │ │ │ └── device.js │ │ └── wp8.json │ └── www │ │ ├── config.xml │ │ ├── css │ │ └── index.css │ │ ├── icon.png │ │ ├── img │ │ └── logo.png │ │ ├── index.html │ │ ├── js │ │ ├── MobileServices.Web-1.1.0.min.js │ │ ├── NotificationHub.js │ │ ├── PushNotification.js │ │ ├── index.js │ │ └── jquery-1.9.1.min.js │ │ ├── res │ │ ├── icon │ │ │ ├── android │ │ │ │ ├── icon-36-ldpi.png │ │ │ │ ├── icon-48-mdpi.png │ │ │ │ ├── icon-72-hdpi.png │ │ │ │ └── icon-96-xhdpi.png │ │ │ ├── bada-wac │ │ │ │ ├── icon-48-type5.png │ │ │ │ ├── icon-50-type3.png │ │ │ │ └── icon-80-type4.png │ │ │ ├── bada │ │ │ │ └── icon-128.png │ │ │ ├── blackberry │ │ │ │ └── icon-80.png │ │ │ ├── ios │ │ │ │ ├── icon-57-2x.png │ │ │ │ ├── icon-57.png │ │ │ │ ├── icon-72-2x.png │ │ │ │ └── icon-72.png │ │ │ ├── tizen │ │ │ │ └── icon-128.png │ │ │ ├── webos │ │ │ │ └── icon-64.png │ │ │ └── windows-phone │ │ │ │ ├── icon-173-tile.png │ │ │ │ ├── icon-48.png │ │ │ │ └── icon-62-tile.png │ │ └── screen │ │ │ ├── android │ │ │ ├── screen-hdpi-landscape.png │ │ │ ├── screen-hdpi-portrait.png │ │ │ ├── screen-ldpi-landscape.png │ │ │ ├── screen-ldpi-portrait.png │ │ │ ├── screen-mdpi-landscape.png │ │ │ ├── screen-mdpi-portrait.png │ │ │ ├── screen-xhdpi-landscape.png │ │ │ └── screen-xhdpi-portrait.png │ │ │ ├── bada-wac │ │ │ ├── screen-type3.png │ │ │ ├── screen-type4.png │ │ │ └── screen-type5.png │ │ │ ├── bada │ │ │ └── screen-portrait.png │ │ │ ├── blackberry │ │ │ └── screen-225.png │ │ │ ├── ios │ │ │ ├── screen-ipad-landscape-2x.png │ │ │ ├── screen-ipad-landscape.png │ │ │ ├── screen-ipad-portrait-2x.png │ │ │ ├── screen-ipad-portrait.png │ │ │ ├── screen-iphone-landscape-2x.png │ │ │ ├── screen-iphone-landscape.png │ │ │ ├── screen-iphone-portrait-2x.png │ │ │ ├── screen-iphone-portrait-568h-2x.png │ │ │ └── screen-iphone-portrait.png │ │ │ ├── tizen │ │ │ └── README.md │ │ │ ├── webos │ │ │ └── screen-64.png │ │ │ └── windows-phone │ │ │ └── screen-portrait.jpg │ │ ├── spec.html │ │ └── spec │ │ ├── helper.js │ │ ├── index.js │ │ └── lib │ │ ├── enc-base64.js │ │ ├── hmac-sha256.js │ │ ├── jQuery │ │ ├── crowddb.htm │ │ └── jquery-2.0.3.js │ │ └── jasmine-1.2.0 │ │ ├── MIT.LICENSE │ │ ├── jasmine-html.js │ │ ├── jasmine.css │ │ └── jasmine.js ├── readme.md └── service-js │ ├── package.json │ └── table │ ├── TodoItem.json │ └── todoitem.insert.js ├── TodoListXamarinForms ├── README.md ├── ToDoAzure.sln └── ToDoAzure │ ├── ToDoAzure.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 │ │ │ ├── check.png │ │ │ ├── check2x.png │ │ │ ├── icon.png │ │ │ └── plus.png │ ├── ToDoAzure.Droid.csproj │ ├── app.config │ └── packages.config │ ├── ToDoAzure.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ ├── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── checked.png │ │ └── unchecked.png │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── README_FIRST.txt │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── SplashScreenImage.jpg │ ├── ToDoAzure.WinPhone.csproj │ ├── Toolkit.Content │ │ ├── ApplicationBar.Add.png │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ ├── ApplicationBar.Refresh.png │ │ └── ApplicationBar.Select.png │ └── packages.config │ ├── ToDoAzure.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── 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 │ │ ├── checked.png │ │ └── unchecked.png │ ├── ToDoAzure.iOS.csproj │ ├── app.config │ ├── bokeh.png │ ├── iTunesArtwork │ ├── iTunesArtwork@2x │ └── packages.config │ └── ToDoAzure │ ├── App.cs │ ├── Constants.cs │ ├── Data │ └── ToDoItemManager.cs │ ├── Models │ ├── DeviceDetails.cs │ └── ToDoItem.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ToDoAzure.csproj │ ├── ViewModels │ └── ToDoListViewModel.cs │ ├── Views │ ├── CheckBox.xaml │ ├── CheckBox.xaml.cs │ ├── ToDoItemXaml.xaml │ ├── ToDoItemXaml.xaml.cs │ ├── ToDoListXaml.xaml │ └── ToDoListXaml.xaml.cs │ └── packages.config ├── TodoOffline ├── Android │ ├── .gitignore │ └── blog20140807 │ │ ├── app │ │ ├── build.gradle │ │ ├── lint.xml │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── blog20140807 │ │ │ │ ├── EditToDoActivity.java │ │ │ │ ├── ToDoActivity.java │ │ │ │ ├── ToDoItem.java │ │ │ │ └── ToDoItemAdapter.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ ├── activity_edit_to_do.xml │ │ │ ├── activity_to_do.xml │ │ │ └── row_list_to_do.xml │ │ │ ├── menu │ │ │ └── activity_main.xml │ │ │ ├── values-v11 │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── import-summary.txt │ │ └── settings.gradle ├── WindowsUniversal │ ├── Readme.md │ ├── TodoOffline-Universal.sln │ └── TodoOffline │ │ ├── TodoOffline.Shared │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DataModel │ │ │ └── TodoItem.cs │ │ ├── MainPage.cs │ │ ├── SyncHandler.cs │ │ ├── TodoOffline.Shared.projitems │ │ └── TodoOffline.Shared.shproj │ │ ├── TodoOffline.Windows │ │ ├── Assets │ │ │ ├── Logo.scale-100.png │ │ │ ├── SmallLogo.scale-100.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ └── StoreLogo.scale-100.png │ │ ├── Common │ │ │ ├── QuickStartTask.xaml │ │ │ └── QuickStartTask.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TodoOffline.Windows.csproj │ │ └── packages.config │ │ └── TodoOffline.WindowsPhone │ │ ├── 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 │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── TodoOffline.WindowsPhone.csproj │ │ ├── app.config │ │ └── packages.config ├── Xamarin.Android │ ├── Readme.md │ ├── TodoOffline.Android.sln │ └── TodoOffline.Android │ │ ├── Assets │ │ └── AboutAssets.txt │ │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── Activity_To_Do.axml │ │ │ └── Row_List_To_Do.axml │ │ ├── menu │ │ │ └── activity_main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── Strings.xml │ │ │ └── styles.xml │ │ ├── SyncHandler.cs │ │ ├── ToDoActivity.cs │ │ ├── ToDoItem.cs │ │ ├── ToDoItemAdapter.cs │ │ ├── TodoOffline.Android.csproj │ │ ├── app.config │ │ └── packages.config ├── Xamarin.iOS │ ├── Readme.md │ ├── XamarinOffline.iOS.sln │ └── XamarinOffline.iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MainStoryboard_iPad.storyboard │ │ ├── MainStoryboard_iPhone.storyboard │ │ ├── QSTodoListViewController.cs │ │ ├── QSTodoListViewController.designer.cs │ │ ├── QSTodoService.cs │ │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Landscape.png │ │ ├── Default-Landscape@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x.png │ │ ├── Icon.png │ │ └── Icon@2x.png │ │ ├── SyncHandler.cs │ │ ├── ToDoItem.cs │ │ ├── XamarinOffline.iOS.csproj │ │ ├── app.config │ │ └── packages.config └── iOS │ ├── .gitignore │ ├── Readme.md │ ├── WindowsAzureMobileServices.framework │ ├── Headers │ │ ├── MSClient.h │ │ ├── MSCoreDataStore.h │ │ ├── MSDateOffset.h │ │ ├── MSError.h │ │ ├── MSFilter.h │ │ ├── MSLoginController.h │ │ ├── MSPush.h │ │ ├── MSQuery.h │ │ ├── MSQueryResult.h │ │ ├── MSSyncContext.h │ │ ├── MSSyncContextReadResult.h │ │ ├── MSSyncTable.h │ │ ├── MSTable.h │ │ ├── MSTableOperation.h │ │ ├── MSTableOperationError.h │ │ ├── MSUser.h │ │ └── WindowsAzureMobileServices.h │ ├── Versions │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── MSClient.h │ │ │ │ ├── MSCoreDataStore.h │ │ │ │ ├── MSDateOffset.h │ │ │ │ ├── MSError.h │ │ │ │ ├── MSFilter.h │ │ │ │ ├── MSLoginController.h │ │ │ │ ├── MSPush.h │ │ │ │ ├── MSQuery.h │ │ │ │ ├── MSQueryResult.h │ │ │ │ ├── MSSyncContext.h │ │ │ │ ├── MSSyncContextReadResult.h │ │ │ │ ├── MSSyncTable.h │ │ │ │ ├── MSTable.h │ │ │ │ ├── MSTableOperation.h │ │ │ │ ├── MSTableOperationError.h │ │ │ │ ├── MSUser.h │ │ │ │ └── WindowsAzureMobileServices.h │ │ │ └── WindowsAzureMobileServices │ │ └── Current │ │ │ ├── Headers │ │ │ ├── MSClient.h │ │ │ ├── MSCoreDataStore.h │ │ │ ├── MSDateOffset.h │ │ │ ├── MSError.h │ │ │ ├── MSFilter.h │ │ │ ├── MSLoginController.h │ │ │ ├── MSPush.h │ │ │ ├── MSQuery.h │ │ │ ├── MSQueryResult.h │ │ │ ├── MSSyncContext.h │ │ │ ├── MSSyncContextReadResult.h │ │ │ ├── MSSyncTable.h │ │ │ ├── MSTable.h │ │ │ ├── MSTableOperation.h │ │ │ ├── MSTableOperationError.h │ │ │ ├── MSUser.h │ │ │ └── WindowsAzureMobileServices.h │ │ │ └── WindowsAzureMobileServices │ ├── WindowsAzureMobileServices │ └── license.rtf │ ├── iOSOffline.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── DonnaM.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ └── iOSOffline │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── MainStoryboard_iPhone.storyboard │ ├── QSAppDelegate.h │ ├── QSAppDelegate.m │ ├── QSItemViewController.h │ ├── QSItemViewController.m │ ├── QSTodoDataModel.xcdatamodeld │ └── QSTodoDataModel.xcdatamodel │ │ └── contents │ ├── QSTodoListViewController.h │ ├── QSTodoListViewController.m │ ├── QSTodoService.h │ ├── QSTodoService.m │ ├── QSUIAlertViewWithBlock.h │ ├── QSUIAlertViewWithBlock.m │ ├── connected114.png │ ├── connected144.png │ ├── connected57.png │ ├── connected72.png │ ├── en.lproj │ └── InfoPlist.strings │ ├── iOSOffline-Info.plist │ ├── iOSOffline-Prefix.pch │ └── main.m ├── UploadImages ├── AndroidStudio │ ├── .gitignore │ └── imageUploadRS │ │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── gradle.xml │ │ ├── libraries │ │ │ ├── azure_mobile_services_android_sdk_2_0_3.xml │ │ │ ├── azure_notifications_handler_1_0_1.xml │ │ │ ├── azure_storage_android_0_6_0.xml │ │ │ ├── gson_2_3.xml │ │ │ └── guava_18_0.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ │ ├── app │ │ ├── app.iml │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── imageuploadrs │ │ │ │ ├── ToDoActivity.java │ │ │ │ ├── ToDoItem.java │ │ │ │ └── ToDoItemAdapter.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ ├── activity_to_do.xml │ │ │ └── row_list_to_do.xml │ │ │ ├── menu │ │ │ └── activity_main.xml │ │ │ ├── values-v11 │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── imageUploadRS.iml │ │ └── settings.gradle └── README.md ├── VSCordovaTodoListQuickstart ├── readme.md ├── todolist_cordova.sln └── todolist_cordova │ ├── .gitignore │ ├── Project_Readme.html │ ├── bower.json │ ├── build.json │ ├── config.xml │ ├── merges │ ├── android │ │ └── scripts │ │ │ ├── android2.3-jscompat.js │ │ │ └── platformOverrides.js │ └── windows │ │ └── scripts │ │ ├── platformOverrides.js │ │ └── winstore-jscompat.js │ ├── package.json │ ├── res │ ├── icons │ │ ├── android │ │ │ ├── icon-36-ldpi.png │ │ │ ├── icon-48-mdpi.png │ │ │ ├── icon-72-hdpi.png │ │ │ └── icon-96-xhdpi.png │ │ ├── ios │ │ │ ├── icon-40-2x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-50-2x.png │ │ │ ├── icon-50.png │ │ │ ├── icon-57-2x.png │ │ │ ├── icon-57.png │ │ │ ├── icon-60-2x.png │ │ │ ├── icon-60-3x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-72-2x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-76-2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-small-2x.png │ │ │ └── icon-small.png │ │ ├── windows │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-240.png │ │ │ ├── Square30x30Logo.scale-100.png │ │ │ ├── Square310x310Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-240.png │ │ │ ├── Square70x70Logo.scale-100.png │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ ├── StoreLogo.scale-240.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ └── Wide310x150Logo.scale-240.png │ │ └── wp8 │ │ │ ├── ApplicationIcon.png │ │ │ └── Background.png │ ├── native │ │ └── android │ │ │ └── ant.properties │ └── screens │ │ ├── android │ │ ├── screen-hdpi-landscape.png │ │ ├── screen-hdpi-portrait.png │ │ ├── screen-ldpi-landscape.png │ │ ├── screen-ldpi-portrait.png │ │ ├── screen-mdpi-landscape.png │ │ ├── screen-mdpi-portrait.png │ │ ├── screen-xhdpi-landscape.png │ │ └── screen-xhdpi-portrait.png │ │ ├── ios │ │ ├── screen-ipad-landscape-2x.png │ │ ├── screen-ipad-landscape.png │ │ ├── screen-ipad-portrait-2x.png │ │ ├── screen-ipad-portrait.png │ │ ├── screen-iphone-568h-2x.png │ │ ├── screen-iphone-landscape-736h.png │ │ ├── screen-iphone-portrait-2x.png │ │ ├── screen-iphone-portrait-667h.png │ │ ├── screen-iphone-portrait-736h.png │ │ └── screen-iphone-portrait.png │ │ ├── windows │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-240.png │ │ └── SplashScreenPhone.scale-240.png │ │ └── wp8 │ │ └── SplashScreenImage.jpg │ ├── taco.json │ ├── todolist_cordova.jsproj │ └── www │ ├── css │ ├── index.css │ └── styles.css │ ├── index.html │ └── scripts │ ├── index.js │ ├── jquery-2.1.0.min.js │ └── platformOverrides.js └── contributing.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /CordovaNotificationsArticle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/.gitignore -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo.sln -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/.gitignore -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/BackboneTodo.jsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/BackboneTodo.jsproj -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/FetchRequirements.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/FetchRequirements.ps1 -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/bower.json -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/config.xml -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/package.json -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-40-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-40-2x.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-40.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-50-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-50-2x.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-50.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-57-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-57-2x.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-57.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-60-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-60-2x.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-60.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-72-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-72-2x.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-72.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-76-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-76-2x.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-76.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-small-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-small-2x.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/ios/icon-small.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/windows8/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/windows8/logo.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/windows8/smalllogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/windows8/smalllogo.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/windows8/storelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/windows8/storelogo.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/wp8/icon-173-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/wp8/icon-173-tile.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/icons/wp8/icon-62-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/icons/wp8/icon-62-tile.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/res/native/android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/res/native/android/ant.properties -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/taco.json: -------------------------------------------------------------------------------- 1 | { 2 | "cordova-cli": "5.1.1" 3 | } 4 | -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/www/css/index.css -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/www/images/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/www/images/checkbox.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/www/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/www/images/checkbox_checked.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/www/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/www/images/delete.png -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/www/index.html -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/www/scripts/baseView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/www/scripts/baseView.js -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/www/scripts/geolocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/www/scripts/geolocation.js -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/www/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/www/scripts/index.js -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/www/scripts/platformOverrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/www/scripts/platformOverrides.js -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/www/scripts/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/www/scripts/storage.js -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/www/scripts/todoCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/www/scripts/todoCollection.js -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/www/scripts/todoModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/www/scripts/todoModel.js -------------------------------------------------------------------------------- /CordovaNotificationsArticle/BackboneToDo/www/scripts/todoView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/BackboneToDo/www/scripts/todoView.js -------------------------------------------------------------------------------- /CordovaNotificationsArticle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/LICENSE -------------------------------------------------------------------------------- /CordovaNotificationsArticle/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/readme.md -------------------------------------------------------------------------------- /CordovaNotificationsArticle/service/api/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/service/api/readme.md -------------------------------------------------------------------------------- /CordovaNotificationsArticle/service/extensions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/service/extensions/readme.md -------------------------------------------------------------------------------- /CordovaNotificationsArticle/service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/service/package.json -------------------------------------------------------------------------------- /CordovaNotificationsArticle/service/scheduler/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/service/scheduler/readme.md -------------------------------------------------------------------------------- /CordovaNotificationsArticle/service/shared/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/service/shared/readme.md -------------------------------------------------------------------------------- /CordovaNotificationsArticle/service/table/TodoItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/service/table/TodoItem.json -------------------------------------------------------------------------------- /CordovaNotificationsArticle/service/table/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/service/table/readme.md -------------------------------------------------------------------------------- /CordovaNotificationsArticle/service/table/todoitem.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaNotificationsArticle/service/table/todoitem.insert.js -------------------------------------------------------------------------------- /CordovaUploadImages/TodoList-Upload/TodoList-Upload.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/TodoList-Upload/TodoList-Upload.sln -------------------------------------------------------------------------------- /CordovaUploadImages/TodoList-Upload/TodoList-Upload/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/TodoList-Upload/TodoList-Upload/Project_Readme.html -------------------------------------------------------------------------------- /CordovaUploadImages/TodoList-Upload/TodoList-Upload/TodoList-Upload.jsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/TodoList-Upload/TodoList-Upload/TodoList-Upload.jsproj -------------------------------------------------------------------------------- /CordovaUploadImages/TodoList-Upload/TodoList-Upload/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/TodoList-Upload/TodoList-Upload/config.xml -------------------------------------------------------------------------------- /CordovaUploadImages/TodoList-Upload/TodoList-Upload/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/TodoList-Upload/TodoList-Upload/css/index.css -------------------------------------------------------------------------------- /CordovaUploadImages/TodoList-Upload/TodoList-Upload/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/TodoList-Upload/TodoList-Upload/index.html -------------------------------------------------------------------------------- /CordovaUploadImages/TodoList-Upload/TodoList-Upload/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/TodoList-Upload/TodoList-Upload/scripts/index.js -------------------------------------------------------------------------------- /CordovaUploadImages/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/readme.md -------------------------------------------------------------------------------- /CordovaUploadImages/readme/device1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/readme/device1.png -------------------------------------------------------------------------------- /CordovaUploadImages/readme/mobile-blob-storage-app-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/readme/mobile-blob-storage-app-settings.png -------------------------------------------------------------------------------- /CordovaUploadImages/service/api/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/service/api/readme.md -------------------------------------------------------------------------------- /CordovaUploadImages/service/extensions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/service/extensions/readme.md -------------------------------------------------------------------------------- /CordovaUploadImages/service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/service/package.json -------------------------------------------------------------------------------- /CordovaUploadImages/service/scheduler/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/service/scheduler/readme.md -------------------------------------------------------------------------------- /CordovaUploadImages/service/shared/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/service/shared/readme.md -------------------------------------------------------------------------------- /CordovaUploadImages/service/table/TodoItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/service/table/TodoItem.json -------------------------------------------------------------------------------- /CordovaUploadImages/service/table/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/service/table/readme.md -------------------------------------------------------------------------------- /CordovaUploadImages/service/table/todoitem.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CordovaUploadImages/service/table/todoitem.insert.js -------------------------------------------------------------------------------- /CustomAuthentication/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/.nuget/NuGet.Config -------------------------------------------------------------------------------- /CustomAuthentication/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/.nuget/NuGet.exe -------------------------------------------------------------------------------- /CustomAuthentication/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/.nuget/NuGet.targets -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.Shared/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.Shared/App.xaml -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.Shared/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.Shared/App.xaml.cs -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.Shared/DataModel/LoginRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.Shared/DataModel/LoginRequest.cs -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.Shared/DataModel/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.Shared/DataModel/TodoItem.cs -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.Shared/MainPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.Shared/MainPage.cs -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.Windows/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.Windows/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.Windows/Common/QuickStartTask.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.Windows/Common/QuickStartTask.xaml -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.Windows/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.Windows/MainPage.xaml -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.Windows/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.Windows/MainPage.xaml.cs -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.Windows/Package.appxmanifest -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.Windows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.Windows/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.Windows/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.Windows/packages.config -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.WindowsPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.WindowsPhone/MainPage.xaml -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.WindowsPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.WindowsPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.WindowsPhone/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.WindowsPhone/Package.appxmanifest -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.WindowsPhone/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.WindowsPhone/app.config -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthClient.WindowsPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthClient.WindowsPhone/packages.config -------------------------------------------------------------------------------- /CustomAuthentication/CustomAuthMobileService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/CustomAuthMobileService.sln -------------------------------------------------------------------------------- /CustomAuthentication/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/Readme.md -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/Controllers/CustomLoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/Controllers/CustomLoginController.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/Controllers/TodoItemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/Controllers/TodoItemController.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/CustomAuthMobileService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/CustomAuthMobileService.csproj -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/CustomLoginProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/CustomLoginProvider.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/DataObjects/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/DataObjects/Account.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/DataObjects/CustomLoginResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/DataObjects/CustomLoginResult.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/DataObjects/LoginRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/DataObjects/LoginRequest.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/DataObjects/RegistrationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/DataObjects/RegistrationRequest.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/DataObjects/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/DataObjects/TodoItem.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/Global.asax -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/Global.asax.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/Models/MobileServiceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/Models/MobileServiceContext.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/Properties/Settings.settings -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/ScheduledJobs/SampleJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/ScheduledJobs/SampleJob.cs -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/Web.Debug.config -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/Web.Release.config -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/Web.config -------------------------------------------------------------------------------- /CustomAuthentication/ServiceBackend/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/CustomAuthentication/ServiceBackend/packages.config -------------------------------------------------------------------------------- /GettingStarted/Android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/.gitignore -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/.classpath -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/.project -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/AndroidManifest.xml -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/ic_launcher-web.png -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/libs/android-support-v4.jar -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/libs/gson-2.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/libs/gson-2.2.2.jar -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/libs/guava-17.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/libs/guava-17.0.jar -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/libs/mobileservices-2.0.1-beta.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/libs/mobileservices-2.0.1-beta.jar -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/libs/thirdpartynotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/libs/thirdpartynotices.rtf -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/lint.xml -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/proguard-project.txt -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/project.properties -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/res/layout/activity_to_do.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/res/layout/activity_to_do.xml -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/res/layout/row_list_to_do.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/res/layout/row_list_to_do.xml -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/res/menu/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/res/menu/activity_main.xml -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/res/values-v11/styles.xml -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/res/values-v14/styles.xml -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/res/values/strings.xml -------------------------------------------------------------------------------- /GettingStarted/Android/ZUMOAPPNAME/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/Android/ZUMOAPPNAME/res/values/styles.xml -------------------------------------------------------------------------------- /GettingStarted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStarted/README.md -------------------------------------------------------------------------------- /GettingStartedWithData/Android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/Android/.gitignore -------------------------------------------------------------------------------- /GettingStartedWithData/Android/GetStartedWithData/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/Android/GetStartedWithData/.classpath -------------------------------------------------------------------------------- /GettingStartedWithData/Android/GetStartedWithData/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/Android/GetStartedWithData/.project -------------------------------------------------------------------------------- /GettingStartedWithData/Android/GetStartedWithData/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/Android/GetStartedWithData/AndroidManifest.xml -------------------------------------------------------------------------------- /GettingStartedWithData/Android/GetStartedWithData/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/Android/GetStartedWithData/ic_launcher-web.png -------------------------------------------------------------------------------- /GettingStartedWithData/Android/GetStartedWithData/libs/gson-2.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/Android/GetStartedWithData/libs/gson-2.2.2.jar -------------------------------------------------------------------------------- /GettingStartedWithData/Android/GetStartedWithData/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/Android/GetStartedWithData/lint.xml -------------------------------------------------------------------------------- /GettingStartedWithData/Android/GetStartedWithData/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/Android/GetStartedWithData/project.properties -------------------------------------------------------------------------------- /GettingStartedWithData/Android/GetStartedWithData/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/Android/GetStartedWithData/res/values/strings.xml -------------------------------------------------------------------------------- /GettingStartedWithData/Android/GetStartedWithData/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/Android/GetStartedWithData/res/values/styles.xml -------------------------------------------------------------------------------- /GettingStartedWithData/AndroidStudio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/AndroidStudio/.gitignore -------------------------------------------------------------------------------- /GettingStartedWithData/AndroidStudio/GetStartedWithData/.idea/.name: -------------------------------------------------------------------------------- 1 | GetStartedWithData -------------------------------------------------------------------------------- /GettingStartedWithData/AndroidStudio/GetStartedWithData/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/AndroidStudio/GetStartedWithData/.idea/compiler.xml -------------------------------------------------------------------------------- /GettingStartedWithData/AndroidStudio/GetStartedWithData/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/AndroidStudio/GetStartedWithData/.idea/modules.xml -------------------------------------------------------------------------------- /GettingStartedWithData/AndroidStudio/GetStartedWithData/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/AndroidStudio/GetStartedWithData/app/build.gradle -------------------------------------------------------------------------------- /GettingStartedWithData/AndroidStudio/GetStartedWithData/app/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/AndroidStudio/GetStartedWithData/app/lint.xml -------------------------------------------------------------------------------- /GettingStartedWithData/AndroidStudio/GetStartedWithData/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/AndroidStudio/GetStartedWithData/build.gradle -------------------------------------------------------------------------------- /GettingStartedWithData/AndroidStudio/GetStartedWithData/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/AndroidStudio/GetStartedWithData/gradlew -------------------------------------------------------------------------------- /GettingStartedWithData/AndroidStudio/GetStartedWithData/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/AndroidStudio/GetStartedWithData/gradlew.bat -------------------------------------------------------------------------------- /GettingStartedWithData/AndroidStudio/GetStartedWithData/import-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/AndroidStudio/GetStartedWithData/import-summary.txt -------------------------------------------------------------------------------- /GettingStartedWithData/AndroidStudio/GetStartedWithData/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/AndroidStudio/GetStartedWithData/local.properties -------------------------------------------------------------------------------- /GettingStartedWithData/AndroidStudio/GetStartedWithData/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /GettingStartedWithData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithData/README.md -------------------------------------------------------------------------------- /GettingStartedWithPush/Android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/Android/.gitignore -------------------------------------------------------------------------------- /GettingStartedWithPush/Android/GettingStartedWithPush/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/Android/GettingStartedWithPush/.classpath -------------------------------------------------------------------------------- /GettingStartedWithPush/Android/GettingStartedWithPush/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/Android/GettingStartedWithPush/.project -------------------------------------------------------------------------------- /GettingStartedWithPush/Android/GettingStartedWithPush/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/Android/GettingStartedWithPush/AndroidManifest.xml -------------------------------------------------------------------------------- /GettingStartedWithPush/Android/GettingStartedWithPush/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/Android/GettingStartedWithPush/ic_launcher-web.png -------------------------------------------------------------------------------- /GettingStartedWithPush/Android/GettingStartedWithPush/libs/gson-2.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/Android/GettingStartedWithPush/libs/gson-2.2.2.jar -------------------------------------------------------------------------------- /GettingStartedWithPush/Android/GettingStartedWithPush/libs/guava-17.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/Android/GettingStartedWithPush/libs/guava-17.0.jar -------------------------------------------------------------------------------- /GettingStartedWithPush/Android/GettingStartedWithPush/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/Android/GettingStartedWithPush/lint.xml -------------------------------------------------------------------------------- /GettingStartedWithPush/Android/GettingStartedWithPush/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/Android/GettingStartedWithPush/proguard-project.txt -------------------------------------------------------------------------------- /GettingStartedWithPush/Android/GettingStartedWithPush/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/Android/GettingStartedWithPush/project.properties -------------------------------------------------------------------------------- /GettingStartedWithPush/AndroidStudio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/AndroidStudio/.gitignore -------------------------------------------------------------------------------- /GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/.idea/misc.xml -------------------------------------------------------------------------------- /GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/.idea/vcs.xml -------------------------------------------------------------------------------- /GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/app/app.iml -------------------------------------------------------------------------------- /GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/app/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/app/lint.xml -------------------------------------------------------------------------------- /GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/build.gradle -------------------------------------------------------------------------------- /GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/gradlew -------------------------------------------------------------------------------- /GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/gradlew.bat -------------------------------------------------------------------------------- /GettingStartedWithPush/AndroidStudio/GettingStartedWithPush/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /GettingStartedWithPush/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPush/README.md -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/Components/GCMClient-1.0.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/Components/GCMClient-1.0.info -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/Components/GCMClient-1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/Components/GCMClient-1.0.png -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/Readme.md -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure.sln -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.Droid/GcmService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.Droid/GcmService.cs -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.Droid/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.Droid/app.config -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.WinPhone/App.xaml -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/Info.plist -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/Main.cs -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/app.config -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/bokeh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/bokeh.png -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/iTunesArtwork -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure.iOS/packages.config -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure/App.cs -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure/Constants.cs -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure/Models/ToDoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure/Models/ToDoItem.cs -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure/ToDoAzure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure/ToDoAzure.csproj -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure/Views/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure/Views/CheckBox.xaml -------------------------------------------------------------------------------- /GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/GettingStartedWithPushXamarinForms/ToDoAzure/ToDoAzure/packages.config -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NetBackendWithTableStorage/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/Readme.md -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010.Test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010.Test/app.config -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010.Test/blog20141010.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010.Test/blog20141010.Test.csproj -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010.Test/packages.config -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010.sln -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/Controllers/PersonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/Controllers/PersonController.cs -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/Controllers/TodoItemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/Controllers/TodoItemController.cs -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/DataObjects/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/DataObjects/Person.cs -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/DataObjects/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/DataObjects/TodoItem.cs -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/Global.asax -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/Global.asax.cs -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/Models/MobileServiceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/Models/MobileServiceContext.cs -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/ScheduledJobs/SampleJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/ScheduledJobs/SampleJob.cs -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/Web.Debug.config -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/Web.Release.config -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/Web.config -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/blog20141010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/blog20141010.csproj -------------------------------------------------------------------------------- /NetBackendWithTableStorage/blog20141010/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/NetBackendWithTableStorage/blog20141010/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/README.md -------------------------------------------------------------------------------- /TicTacToe/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/readme.md -------------------------------------------------------------------------------- /TicTacToe/service-js/api/getgamesforuser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/api/getgamesforuser.js -------------------------------------------------------------------------------- /TicTacToe/service-js/api/getgamesforuser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/api/getgamesforuser.json -------------------------------------------------------------------------------- /TicTacToe/service-js/api/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/api/readme.md -------------------------------------------------------------------------------- /TicTacToe/service-js/extensions/push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/extensions/push.json -------------------------------------------------------------------------------- /TicTacToe/service-js/extensions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/extensions/readme.md -------------------------------------------------------------------------------- /TicTacToe/service-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/package.json -------------------------------------------------------------------------------- /TicTacToe/service-js/scheduler/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/scheduler/readme.md -------------------------------------------------------------------------------- /TicTacToe/service-js/shared/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/shared/readme.md -------------------------------------------------------------------------------- /TicTacToe/service-js/table/games.delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/games.delete.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/games.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/games.insert.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/games.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/games.json -------------------------------------------------------------------------------- /TicTacToe/service-js/table/games.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/games.read.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/games.update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/games.update.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/moves.delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/moves.delete.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/moves.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/moves.insert.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/moves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/moves.json -------------------------------------------------------------------------------- /TicTacToe/service-js/table/moves.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/moves.read.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/moves.update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/moves.update.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/readme.md -------------------------------------------------------------------------------- /TicTacToe/service-js/table/userfriends.delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/userfriends.delete.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/userfriends.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/userfriends.insert.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/userfriends.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/userfriends.json -------------------------------------------------------------------------------- /TicTacToe/service-js/table/userfriends.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/userfriends.read.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/userfriends.update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/userfriends.update.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/users.delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/users.delete.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/users.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/users.insert.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/users.json -------------------------------------------------------------------------------- /TicTacToe/service-js/table/users.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/users.read.js -------------------------------------------------------------------------------- /TicTacToe/service-js/table/users.update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-js/table/users.update.js -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/Controllers/GameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/Controllers/GameController.cs -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/Controllers/MoveController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/Controllers/MoveController.cs -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/Controllers/UserController.cs -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/DataObjects/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/DataObjects/Game.cs -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/DataObjects/GameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/DataObjects/GameInfo.cs -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/DataObjects/Move.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/DataObjects/Move.cs -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/DataObjects/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/DataObjects/User.cs -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/DataObjects/UserFriends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/DataObjects/UserFriends.cs -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/Global.asax -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/Global.asax.cs -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/TicTacToeMobileService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/TicTacToeMobileService.csproj -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/Web.Debug.config -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/Web.Release.config -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/Web.config -------------------------------------------------------------------------------- /TicTacToe/service-net/TicTacToeMobileService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/service-net/TicTacToeMobileService/packages.config -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/App.xaml -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/App.xaml.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Common/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Common/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/MainPage.xaml -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/MainPage.xaml.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Package.appxmanifest -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/api/getgamesforuser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/api/getgamesforuser.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/azure.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/azure.err -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/channels.delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/channels.delete.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/channels.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/channels.insert.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/channels.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/channels.read.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/channels.update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/channels.update.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/games.delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/games.delete.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/games.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/games.insert.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/games.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/games.read.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/games.update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/games.update.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/moves.delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/moves.delete.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/moves.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/moves.insert.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/moves.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/moves.read.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/moves.update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/moves.update.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/userchannels.delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/userchannels.delete.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/userchannels.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/userchannels.insert.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/userchannels.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/userchannels.read.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/userchannels.update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/userchannels.update.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/userfriends.delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/userfriends.delete.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/userfriends.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/userfriends.insert.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/userfriends.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/userfriends.read.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/userfriends.update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/userfriends.update.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/users.delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/users.delete.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/users.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/users.insert.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/users.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/users.read.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/table/users.update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/table/users.update.js -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/Script/tictactoesetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/Script/tictactoesetup.ps1 -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/TicTacToeCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/TicTacToeCSharp.csproj -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeCSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeCSharp/packages.config -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/Cell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/Cell.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/Common/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/Common/BindableBase.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/Common/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/Common/DelegateCommand.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/ComputerPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/ComputerPlayer.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/GameProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/GameProcessor.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/HumanPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/HumanPlayer.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/IPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/IPlayer.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/MiniMax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/MiniMax.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/RemotePlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/RemotePlayer.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/TicTacToeLibraryCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/TicTacToeLibraryCSharp.csproj -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/TicTacToeMobileServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/TicTacToeMobileServiceClient.cs -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/app.config -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeLibraryCSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeLibraryCSharp/packages.config -------------------------------------------------------------------------------- /TicTacToe/win8/TicTacToeMobileServices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TicTacToe/win8/TicTacToeMobileServices.sln -------------------------------------------------------------------------------- /TodoAngularJS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/.gitignore -------------------------------------------------------------------------------- /TodoAngularJS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/LICENSE -------------------------------------------------------------------------------- /TodoAngularJS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/README.md -------------------------------------------------------------------------------- /TodoAngularJS/TodoSPA/App/Scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/TodoSPA/App/Scripts/app.js -------------------------------------------------------------------------------- /TodoAngularJS/TodoSPA/App/Scripts/homeCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/TodoSPA/App/Scripts/homeCtrl.js -------------------------------------------------------------------------------- /TodoAngularJS/TodoSPA/App/Scripts/loginCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/TodoSPA/App/Scripts/loginCtrl.js -------------------------------------------------------------------------------- /TodoAngularJS/TodoSPA/App/Scripts/todoListCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/TodoSPA/App/Scripts/todoListCtrl.js -------------------------------------------------------------------------------- /TodoAngularJS/TodoSPA/App/Scripts/userDataCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/TodoSPA/App/Scripts/userDataCtrl.js -------------------------------------------------------------------------------- /TodoAngularJS/TodoSPA/App/Styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/TodoSPA/App/Styles/index.css -------------------------------------------------------------------------------- /TodoAngularJS/TodoSPA/App/Views/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/TodoSPA/App/Views/Home.html -------------------------------------------------------------------------------- /TodoAngularJS/TodoSPA/App/Views/Login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/TodoSPA/App/Views/Login.html -------------------------------------------------------------------------------- /TodoAngularJS/TodoSPA/App/Views/TodoList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/TodoSPA/App/Views/TodoList.html -------------------------------------------------------------------------------- /TodoAngularJS/TodoSPA/App/Views/UserData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/TodoSPA/App/Views/UserData.html -------------------------------------------------------------------------------- /TodoAngularJS/TodoSPA/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoAngularJS/TodoSPA/index.html -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/.cordova/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/.cordova/config.json -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/.classpath -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/.project -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/AndroidManifest.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/assets/www/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/assets/www/config.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/assets/www/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/assets/www/cordova.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/assets/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/assets/www/css/index.css -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/assets/www/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/assets/www/icon.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/assets/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/assets/www/img/logo.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/assets/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/assets/www/index.html -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/assets/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/assets/www/js/index.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/assets/www/phonegap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/assets/www/phonegap.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/assets/www/spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/assets/www/spec.html -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/assets/www/spec/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/assets/www/spec/helper.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/assets/www/spec/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/assets/www/spec/index.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/build.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/build -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/build.bat -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/check_reqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/check_reqs -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/clean -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/clean.bat -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/defaults.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/lib/appinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/lib/appinfo.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/lib/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/lib/build.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/lib/check_reqs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/lib/check_reqs.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/lib/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/lib/clean.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/lib/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/lib/device.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/lib/emulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/lib/emulator.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/lib/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/lib/exec.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/lib/list-devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/lib/list-devices -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/lib/log.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/lib/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/lib/run.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/log -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/log.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/log.bat -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/run -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/run.bat -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/version -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/cordova/version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/cordova/version.bat -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/libs/cordova-3.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/libs/cordova-3.2.0.jar -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/libs/gcm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/libs/gcm.jar -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/local.properties -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/platform_www/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/platform_www/cordova.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/proguard-project.txt -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/project.properties -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/res/drawable/icon.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/res/values/strings.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/android/res/xml/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/android/res/xml/config.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/CordovaLib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/CordovaLib/.gitignore -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/CordovaLib/Classes/CDV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/CordovaLib/Classes/CDV.h -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/CordovaLib/Classes/CDVDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/CordovaLib/Classes/CDVDebug.h -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/CordovaLib/Classes/CDVJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/CordovaLib/Classes/CDVJSON.h -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/CordovaLib/Classes/CDVJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/CordovaLib/Classes/CDVJSON.m -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/CordovaLib/Classes/CDVTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/CordovaLib/Classes/CDVTimer.h -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/CordovaLib/Classes/CDVTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/CordovaLib/Classes/CDVTimer.m -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/CordovaLib/VERSION: -------------------------------------------------------------------------------- 1 | 3.4.1 2 | -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/CordovaLib/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/CordovaLib/cordova.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/build -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/build.xcconfig -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/check_reqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/check_reqs -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/clean -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/defaults.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/emulate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/emulate -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/lib/install-device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/lib/install-device -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/lib/install-emulator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/lib/install-emulator -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/lib/list-devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/lib/list-devices -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/lib/sim.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/lib/sim.applescript -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/lib/start-emulator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/lib/start-emulator -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/log -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/run -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/cordova/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/cordova/version -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/platform_www/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/platform_www/cordova.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/todolist/Plugins/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/todolist/Plugins/.DS_Store -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/todolist/Plugins/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/todolist/Plugins/README -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/todolist/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/todolist/config.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/todolist/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/todolist/main.m -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/todolist/todolist-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/todolist/todolist-Info.plist -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/todolist/todolist-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/todolist/todolist-Prefix.pch -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/config.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/cordova.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/cordova_plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/cordova_plugins.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/css/index.css -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/icon.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/img/logo.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/index.html -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/js/NotificationHub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/js/NotificationHub.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/js/PushNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/js/PushNotification.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/js/index.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/phonegap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/phonegap.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/res/icon/ios/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/res/icon/ios/icon-57.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/spec.html -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/spec/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/spec/helper.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/spec/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/spec/index.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/ios/www/spec/lib/enc-base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/ios/www/spec/lib/enc-base64.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/App.xaml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/App.xaml.cs -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/ApplicationIcon.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/Background.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/MainPage.xaml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/MainPage.xaml.cs -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/Properties/AppManifest.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/SplashScreenImage.jpg -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/VERSION: -------------------------------------------------------------------------------- 1 | 3.2.0 -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/config.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordova/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordova/build.bat -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordova/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordova/clean.bat -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordova/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordova/defaults.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordova/lib/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordova/lib/build.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordova/lib/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordova/lib/clean.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordova/lib/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordova/lib/deploy.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordova/lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordova/lib/log.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordova/lib/target-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordova/lib/target-list.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordova/log.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordova/log.bat -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordova/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordova/run.bat -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordova/version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordova/version.bat -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordova/win_os_version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordova/win_os_version.bat -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordovalib/PluginResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordovalib/PluginResult.cs -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/cordovalib/XHRHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/cordovalib/XHRHelper.cs -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/platform_www/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/platform_www/cordova.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/todolist.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/todolist.csproj -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/todolist.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/todolist.sln -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/config.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/cordova.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/cordova_plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/cordova_plugins.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/css/index.css -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/icon.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/img/logo.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/index.html -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/js/NotificationHub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/js/NotificationHub.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/js/PushNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/js/PushNotification.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/js/index.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/phonegap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/phonegap.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/spec.html -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/spec/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/spec/helper.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/spec/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/spec/index.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/platforms/wp8/www/spec/lib/enc-base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/platforms/wp8/www/spec/lib/enc-base64.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/plugins/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/plugins/android.json -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/plugins/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/plugins/ios.json -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/plugins/org.apache.cordova.device/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/plugins/org.apache.cordova.device/NOTICE -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/plugins/wp8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/plugins/wp8.json -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/config.xml -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/css/index.css -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/icon.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/img/logo.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/index.html -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/js/MobileServices.Web-1.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/js/MobileServices.Web-1.1.0.min.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/js/NotificationHub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/js/NotificationHub.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/js/PushNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/js/PushNotification.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/js/index.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/android/icon-36-ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/android/icon-36-ldpi.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/android/icon-48-mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/android/icon-48-mdpi.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/android/icon-72-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/android/icon-72-hdpi.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/android/icon-96-xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/android/icon-96-xhdpi.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/bada-wac/icon-48-type5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/bada-wac/icon-48-type5.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/bada-wac/icon-50-type3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/bada-wac/icon-50-type3.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/bada-wac/icon-80-type4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/bada-wac/icon-80-type4.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/bada/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/bada/icon-128.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/blackberry/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/blackberry/icon-80.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/ios/icon-57-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/ios/icon-57-2x.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/ios/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/ios/icon-57.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/ios/icon-72-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/ios/icon-72-2x.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/ios/icon-72.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/tizen/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/tizen/icon-128.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/webos/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/webos/icon-64.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/icon/windows-phone/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/icon/windows-phone/icon-48.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/screen/bada-wac/screen-type3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/screen/bada-wac/screen-type3.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/screen/bada-wac/screen-type4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/screen/bada-wac/screen-type4.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/screen/bada-wac/screen-type5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/screen/bada-wac/screen-type5.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/screen/bada/screen-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/screen/bada/screen-portrait.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/screen/blackberry/screen-225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/screen/blackberry/screen-225.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/screen/tizen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/screen/tizen/README.md -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/res/screen/webos/screen-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/res/screen/webos/screen-64.png -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/spec.html -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/spec/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/spec/helper.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/spec/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/spec/index.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/spec/lib/enc-base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/spec/lib/enc-base64.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/spec/lib/hmac-sha256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/spec/lib/hmac-sha256.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/spec/lib/jQuery/crowddb.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/spec/lib/jQuery/crowddb.htm -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/spec/lib/jQuery/jquery-2.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/spec/lib/jQuery/jquery-2.0.3.js -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/spec/lib/jasmine-1.2.0/MIT.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/spec/lib/jasmine-1.2.0/MIT.LICENSE -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/spec/lib/jasmine-1.2.0/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/spec/lib/jasmine-1.2.0/jasmine.css -------------------------------------------------------------------------------- /TodoListNotifications/phonegap/www/spec/lib/jasmine-1.2.0/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/phonegap/www/spec/lib/jasmine-1.2.0/jasmine.js -------------------------------------------------------------------------------- /TodoListNotifications/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/readme.md -------------------------------------------------------------------------------- /TodoListNotifications/service-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/service-js/package.json -------------------------------------------------------------------------------- /TodoListNotifications/service-js/table/TodoItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/service-js/table/TodoItem.json -------------------------------------------------------------------------------- /TodoListNotifications/service-js/table/todoitem.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListNotifications/service-js/table/todoitem.insert.js -------------------------------------------------------------------------------- /TodoListXamarinForms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/README.md -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure.sln -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.Droid/MainActivity.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.Droid/ToDoAzure.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.Droid/ToDoAzure.Droid.csproj -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.Droid/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.Droid/app.config -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.Droid/packages.config -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/App.xaml -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/App.xaml.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/Assets/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/Assets/checked.png -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/Assets/unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/Assets/unchecked.png -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/LocalizedStrings.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/MainPage.xaml -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/README_FIRST.txt -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.WinPhone/packages.config -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Entitlements.plist -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Info.plist -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Main.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Default.png -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/checked.png -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/Resources/unchecked.png -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/ToDoAzure.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/ToDoAzure.iOS.csproj -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/app.config -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/bokeh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/bokeh.png -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/iTunesArtwork -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure.iOS/packages.config -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/App.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/Constants.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/Data/ToDoItemManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/Data/ToDoItemManager.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/Models/DeviceDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/Models/DeviceDetails.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/Models/ToDoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/Models/ToDoItem.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/ToDoAzure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/ToDoAzure.csproj -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/Views/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/Views/CheckBox.xaml -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/Views/CheckBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/Views/CheckBox.xaml.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/Views/ToDoItemXaml.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/Views/ToDoItemXaml.xaml -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/Views/ToDoItemXaml.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/Views/ToDoItemXaml.xaml.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/Views/ToDoListXaml.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/Views/ToDoListXaml.xaml -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/Views/ToDoListXaml.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/Views/ToDoListXaml.xaml.cs -------------------------------------------------------------------------------- /TodoListXamarinForms/ToDoAzure/ToDoAzure/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoListXamarinForms/ToDoAzure/ToDoAzure/packages.config -------------------------------------------------------------------------------- /TodoOffline/Android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Android/.gitignore -------------------------------------------------------------------------------- /TodoOffline/Android/blog20140807/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Android/blog20140807/app/build.gradle -------------------------------------------------------------------------------- /TodoOffline/Android/blog20140807/app/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Android/blog20140807/app/lint.xml -------------------------------------------------------------------------------- /TodoOffline/Android/blog20140807/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Android/blog20140807/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /TodoOffline/Android/blog20140807/app/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Android/blog20140807/app/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /TodoOffline/Android/blog20140807/app/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Android/blog20140807/app/src/main/res/values-v14/styles.xml -------------------------------------------------------------------------------- /TodoOffline/Android/blog20140807/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Android/blog20140807/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /TodoOffline/Android/blog20140807/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Android/blog20140807/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /TodoOffline/Android/blog20140807/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Android/blog20140807/build.gradle -------------------------------------------------------------------------------- /TodoOffline/Android/blog20140807/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Android/blog20140807/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TodoOffline/Android/blog20140807/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Android/blog20140807/gradlew -------------------------------------------------------------------------------- /TodoOffline/Android/blog20140807/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Android/blog20140807/gradlew.bat -------------------------------------------------------------------------------- /TodoOffline/Android/blog20140807/import-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Android/blog20140807/import-summary.txt -------------------------------------------------------------------------------- /TodoOffline/Android/blog20140807/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /TodoOffline/WindowsUniversal/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/WindowsUniversal/Readme.md -------------------------------------------------------------------------------- /TodoOffline/WindowsUniversal/TodoOffline-Universal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/WindowsUniversal/TodoOffline-Universal.sln -------------------------------------------------------------------------------- /TodoOffline/WindowsUniversal/TodoOffline/TodoOffline.Shared/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/WindowsUniversal/TodoOffline/TodoOffline.Shared/App.xaml -------------------------------------------------------------------------------- /TodoOffline/WindowsUniversal/TodoOffline/TodoOffline.Shared/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/WindowsUniversal/TodoOffline/TodoOffline.Shared/App.xaml.cs -------------------------------------------------------------------------------- /TodoOffline/WindowsUniversal/TodoOffline/TodoOffline.Shared/MainPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/WindowsUniversal/TodoOffline/TodoOffline.Shared/MainPage.cs -------------------------------------------------------------------------------- /TodoOffline/Xamarin.Android/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.Android/Readme.md -------------------------------------------------------------------------------- /TodoOffline/Xamarin.Android/TodoOffline.Android.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.Android/TodoOffline.Android.sln -------------------------------------------------------------------------------- /TodoOffline/Xamarin.Android/TodoOffline.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.Android/TodoOffline.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /TodoOffline/Xamarin.Android/TodoOffline.Android/SyncHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.Android/TodoOffline.Android/SyncHandler.cs -------------------------------------------------------------------------------- /TodoOffline/Xamarin.Android/TodoOffline.Android/ToDoActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.Android/TodoOffline.Android/ToDoActivity.cs -------------------------------------------------------------------------------- /TodoOffline/Xamarin.Android/TodoOffline.Android/ToDoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.Android/TodoOffline.Android/ToDoItem.cs -------------------------------------------------------------------------------- /TodoOffline/Xamarin.Android/TodoOffline.Android/ToDoItemAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.Android/TodoOffline.Android/ToDoItemAdapter.cs -------------------------------------------------------------------------------- /TodoOffline/Xamarin.Android/TodoOffline.Android/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.Android/TodoOffline.Android/app.config -------------------------------------------------------------------------------- /TodoOffline/Xamarin.Android/TodoOffline.Android/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.Android/TodoOffline.Android/packages.config -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/Readme.md -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS.sln -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Info.plist -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Main.cs -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/QSTodoListViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/QSTodoListViewController.cs -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/QSTodoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/QSTodoService.cs -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Resources/Default.png -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Resources/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Resources/Icon-72.png -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Resources/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Resources/Icon-72@2x.png -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/SyncHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/SyncHandler.cs -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/ToDoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/ToDoItem.cs -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/XamarinOffline.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/XamarinOffline.iOS.csproj -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/app.config -------------------------------------------------------------------------------- /TodoOffline/Xamarin.iOS/XamarinOffline.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/Xamarin.iOS/XamarinOffline.iOS/packages.config -------------------------------------------------------------------------------- /TodoOffline/iOS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/.gitignore -------------------------------------------------------------------------------- /TodoOffline/iOS/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/Readme.md -------------------------------------------------------------------------------- /TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSClient.h -------------------------------------------------------------------------------- /TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSError.h -------------------------------------------------------------------------------- /TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSFilter.h -------------------------------------------------------------------------------- /TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSPush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSPush.h -------------------------------------------------------------------------------- /TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSQuery.h -------------------------------------------------------------------------------- /TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSTable.h -------------------------------------------------------------------------------- /TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/WindowsAzureMobileServices.framework/Headers/MSUser.h -------------------------------------------------------------------------------- /TodoOffline/iOS/WindowsAzureMobileServices.framework/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/WindowsAzureMobileServices.framework/license.rtf -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/Default-568h@2x.png -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/Default.png -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/Default@2x.png -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/QSAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/QSAppDelegate.h -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/QSAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/QSAppDelegate.m -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/QSItemViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/QSItemViewController.h -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/QSItemViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/QSItemViewController.m -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/QSTodoListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/QSTodoListViewController.h -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/QSTodoListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/QSTodoListViewController.m -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/QSTodoService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/QSTodoService.h -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/QSTodoService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/QSTodoService.m -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/QSUIAlertViewWithBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/QSUIAlertViewWithBlock.h -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/QSUIAlertViewWithBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/QSUIAlertViewWithBlock.m -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/connected114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/connected114.png -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/connected144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/connected144.png -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/connected57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/connected57.png -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/connected72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/connected72.png -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/iOSOffline-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/iOSOffline-Info.plist -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/iOSOffline-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/iOSOffline-Prefix.pch -------------------------------------------------------------------------------- /TodoOffline/iOS/iOSOffline/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/TodoOffline/iOS/iOSOffline/main.m -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/.gitignore -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/.idea/.name: -------------------------------------------------------------------------------- 1 | imageUploadRS -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/.idea/compiler.xml -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/.idea/gradle.xml -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/.idea/libraries/gson_2_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/.idea/libraries/gson_2_3.xml -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/.idea/libraries/guava_18_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/.idea/libraries/guava_18_0.xml -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/.idea/misc.xml -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/.idea/modules.xml -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/.idea/vcs.xml -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/.idea/workspace.xml -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/app/app.iml -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/app/build.gradle -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/app/proguard-rules.pro -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/build.gradle -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/gradle.properties -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/gradlew -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/gradlew.bat -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/imageUploadRS.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/AndroidStudio/imageUploadRS/imageUploadRS.iml -------------------------------------------------------------------------------- /UploadImages/AndroidStudio/imageUploadRS/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /UploadImages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/UploadImages/README.md -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/readme.md -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova.sln -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/.gitignore -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/Project_Readme.html -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/bower.json -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/build.json -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/config.xml -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/package.json -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/res/icons/ios/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/res/icons/ios/icon-40.png -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/res/icons/ios/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/res/icons/ios/icon-50.png -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/res/icons/ios/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/res/icons/ios/icon-57.png -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/res/icons/ios/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/res/icons/ios/icon-60.png -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/res/icons/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/res/icons/ios/icon-72.png -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/res/icons/ios/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/res/icons/ios/icon-76.png -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/taco.json: -------------------------------------------------------------------------------- 1 | { 2 | "cordova-cli": "5.3.1" 3 | } 4 | -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/todolist_cordova.jsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/todolist_cordova.jsproj -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/www/css/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/www/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/www/css/styles.css -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/www/index.html -------------------------------------------------------------------------------- /VSCordovaTodoListQuickstart/todolist_cordova/www/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/VSCordovaTodoListQuickstart/todolist_cordova/www/scripts/index.js -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/mobile-services-samples/HEAD/contributing.md --------------------------------------------------------------------------------