Book Image

Xamarin 4.x Cross-Platform Application Development - Third Edition

By : Jonathan Peppers
Book Image

Xamarin 4.x Cross-Platform Application Development - Third Edition

By: Jonathan Peppers

Overview of this book

Xamarin is a leading cross-platform application development tool used by top companies such as Coca-Cola, Honeywell, and Alaska Airlines to build apps. Version 4 features significant updates to the platform including the release of Xamarin.Forms 2.0 and improvements have been made to the iOS and Android designers. Xamarin was acquired by Microsoft so it is now a part of the Visual Studio family. This book will show you how to build applications for iOS, Android, and Windows. You will be walked through the process of creating an application that comes complete with a back-end web service and native features such as GPS location, camera, push notifications, and other core features. Additionally, you’ll learn how to use external libraries with Xamarin and Xamarin.Forms to create user interfaces. This book also provides instructions for Visual Studio and Windows. This edition has been updated with new screenshots and detailed steps to provide you with a holistic overview of the new features in Xamarin 4.
Table of Contents (19 chapters)
Xamarin 4.x Cross-Platform Application Development - Third Edition
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Exploring Azure Functions


For the server side of XamSnap, we'll use Azure Functions along with Azure Storage Tables to provide backend storage to the application. Azure Functions is a simple solution to accelerate development for server-side applications that can leverage all features of Windows Azure. We will use the standard HttpClient class found in the .NET base class library for interacting with the service from C#.

A few neat features of Azure Functions are as follows:

  • You can write functions in a variety of programming languages such as JavaScript, C#, Python, and PHP, as well as some scripting languages such as Batch, Bash, and PowerShell

  • Azure Functions integrates with Visual Studio Team Services, Bitbucket, and GitHub for Continuous Integration (CI) scenarios

  • You can set up authentication easily with Azure Active Directory, Windows Live ID, Facebook, Google, and Twitter

  • Functions can be triggered via HTTP, a schedule or timer, Azure Queue, and so on

  • Azure Functions is truly serverless...