Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AddWebTrends-2020-11 #48

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# App Service Helpers
Make sure your apps work with poor to no connectivity through supporting offline scenarios.

App Service Helpers (ASH) makes it as easy as possible to add data storage with sync support to your Xamarin based mobile apps with [Microsoft's Azure App Service Platform](https://azure.microsoft.com/en-us/services/app-service/mobile/?WT.mc_id=ashpackage-github-mijam). ASH was built with the mobile developer in mind and requires no previous experience with developing backend infrastructure. The library exists entirely to allow you to focus on the mobile app.
App Service Helpers (ASH) makes it as easy as possible to add data storage with sync support to your Xamarin based mobile apps with [Microsoft's Azure App Service Platform](https://azure.microsoft.com/services/app-service/mobile/?WT.mc_id=dotnet-0000-mijam). ASH was built with the mobile developer in mind and requires no previous experience with developing backend infrastructure. The library exists entirely to allow you to focus on the mobile app.

## Why
ASH removes a lot of complexities of developing cloud-connected apps by allowing you to add online/offline synchronisation functionality to apps in just four lines of code. With ASH being an abstraction API, its also possible to call into the underlying APIs unlocking easy Authentication. Users can authenticate with Facebook, Twitter, Google, Microsoft accounts, Azure AD, and even Azure B2C.
Expand All @@ -14,11 +14,11 @@ ASH even takes care of securely storing access tokens and refreshing them regula
App Service Helpers is developed as a supplemental library to [Microsoft's Azure Client SDK](https://www.nuget.org/packages/Microsoft.Azure.Mobile.Client/). Rather than replacing this library, ASH extends it by lowering the barrier to entry for developers who wish to build cloud-connected mobile apps in C#. If you ever find yourself outgrowing App Service Helpers, you can drop down to a lower level with the Microsoft Azure Client SDK for fine-tuned control or even remove ASH with minimal refactoring.

## Supported Platforms
- [.NET Standard 1.4](https://docs.microsoft.com/en-us/dotnet/standard/net-standard#net-implementation-support?WT.mc_id=ashpackage-github-mijam)
- [Xamarin Android](https://docs.microsoft.com/en-us/xamarin/android/?WT.mc_id=ashpackage-github-mijam) for API 19 through 24 (KitKat through Nougat)
- [Xamarin iOS](https://docs.microsoft.com/en-us/xamarin/ios/index?WT.mc_id=ashpackage-github-mijam) for iOS versions 8.0 through 10.0
- [Xamarin.Forms](https://docs.microsoft.com/en-us/xamarin/#pivot=xamarin-forms?WT.mc_id=ashpackage-github-mijam) (Android, iOS and UWP)
- [Universal Windows Platform](https://docs.microsoft.com/en-us/windows/uwp/?WT.mc_id=ashpackage-github-mijam)
- [.NET Standard 1.4](https://docs.microsoft.com/dotnet/standard/net-standard?WT.mc_id=dotnet-0000-mijam#net-implementation-support?WT.mc_id=ashpackage-github-mijam)
- [Xamarin Android](https://docs.microsoft.com/xamarin/android/?WT.mc_id=dotnet-0000-mijam) for API 19 through 24 (KitKat through Nougat)
- [Xamarin iOS](https://docs.microsoft.com/xamarin/ios/index?WT.mc_id=dotnet-0000-mijam) for iOS versions 8.0 through 10.0
- [Xamarin.Forms](https://docs.microsoft.com/xamarin/?WT.mc_id=dotnet-0000-mijam#pivot=xamarin-forms?WT.mc_id=ashpackage-github-mijam) (Android, iOS and UWP)
- [Universal Windows Platform](https://docs.microsoft.com/windows/uwp/?WT.mc_id=dotnet-0000-mijam)

## Quick Start

Expand Down Expand Up @@ -49,9 +49,9 @@ var Todos = new ConnectedObservableCollection<ToDo>(client.Table<ToDo>());
You can find a compresentive set of [docs](https://appservicehelpersdocs.z6.web.core.windows.net/) created using VuePress & hosted using Azure Storage Static sites.

### More Resources
- [Azure Mobile Apps](https://docs.microsoft.com/en-us/azure/app-service-mobile/?WT.mc_id=ashpackage-github-mijam)
- [Xamarin Docs](https://docs.microsoft.com/en-us/xamarin/?WT.mc_id=ashpackage-github-mijam)
- [Azure App Service Platform](https://azure.microsoft.com/en-us/services/app-service/mobile/?WT.mc_id=ashpackage-github-mijam)
- [Azure Mobile Apps](https://docs.microsoft.com/azure/app-service-mobile/?WT.mc_id=dotnet-0000-mijam)
- [Xamarin Docs](https://docs.microsoft.com/xamarin/?WT.mc_id=dotnet-0000-mijam)
- [Azure App Service Platform](https://azure.microsoft.com/services/app-service/mobile/?WT.mc_id=dotnet-0000-mijam)
- [Nuget Package](https://www.nuget.org/packages/AppService.Helpers/)

## Problems or Suggestions
Expand Down