<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>Computing Tech</title><description></description><managingEditor>noreply@blogger.com (Computing Tech)</managingEditor><pubDate>Mon, 2 Sep 2024 16:57:49 +0800</pubDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1058</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">25</openSearch:itemsPerPage><link>http://computingtech.blogspot.com/</link><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:subtitle/><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><item><title>Azure App Service / Azure Stack App Service–related technologies</title><link>http://computingtech.blogspot.com/2018/01/azure-app-service-azure-stack-app.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Tue, 2 Jan 2018 18:12:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-3086689965795330006</guid><description>The Azure App Service technologies can be used from the Azure public cloud (in Azure App Service) and from the on-premises implementation of Azure, called Azure Stack (in PREVIEW, as of H1 2016).&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Azure Web Apps&lt;/i&gt;&lt;br /&gt;
 A web or service deployed into Azure App Service. You can deploy ASP.NET MVC apps, plain HTML web apps, Node.js, Java, PHP, Python web/services, and more.&lt;br /&gt;
 Appropriate when you just need to deploy a web/service into the cloud.&lt;br /&gt;
 You can easily manage your web app configuration from Azure portal and to deploy directly from Visual Studio when you are developing.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Azure Mobile Apps&lt;/i&gt;&lt;br /&gt;
 An Azure App Service Mobile App is internally similar to an Azure Web App, but it is specially made to be consumed by mobile apps.&lt;br /&gt;
 You can deploy services (based on ASP.NET Web API or Node.js) but Azure Mobile Apps provide additional capabilities, like offline scenario (sync local device database with database in the cloud), simplified push notification implementation based on Azure Push Notification hub, and an easy implementation of Internet authentication (Facebook, Google, Twitter, Microsoft) or enterprise Azure Active Directory authentication.&lt;br /&gt;
 Appropriate when the services you want to deploy will be consumed by any mobile app (including native, cross-platform, or hybrid).&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Azure API Apps&lt;/i&gt;&lt;br /&gt;
 The API Apps support within Azure App Service enables you to easily create, consume, and call APIs. Azure API Apps provide metadata describing your services (based on Swagger) so other apps can easily discover what your services are offering.&lt;br /&gt;
 You can easily expose and integrate APIs across a wide variety of languages.&lt;br /&gt;
 Discoverability and integration features integrate API Apps with Logic Apps.&lt;br /&gt;
 Appropriate when consuming services (API Apps) from apps like Logic Apps or PowerApps.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Azure Logic Apps&lt;/i&gt;&lt;br /&gt;
 Logic Apps enable you to automate workflows and business processes.&lt;br /&gt;
 You can configure workflows that integrate and transform data between LoB systems (like Microsoft Dynamics or Oracle) with SaaS systems (like Office 365, Salesforce, or Twitter) or your custom applications/services.&lt;br /&gt;
 Take advantage of already available SaaS/LoB connectors or custom API Apps so you can easily build integration systems.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Rapid Mobile App Development (RMAD) with Microsoft PowerApps</title><link>http://computingtech.blogspot.com/2018/01/rapid-mobile-app-development-rmad-with.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Mon, 1 Jan 2018 18:04:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-1532651434499949708</guid><description>PowerApps-related technologies&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;PowerApps&lt;/b&gt;&lt;br /&gt;
 PowerApps is an enterprise service for LoB and IT analysts and developers to connect, create, and share business apps across an organization on any device in minutes.&lt;br /&gt;
 The PowerApps tool allows you to create mobile apps that can run on iOS, Android, and Windows.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Swagger&lt;/b&gt;&lt;br /&gt;
 To consume HTTP services from PowerApps (like services in Azure App Service), those services need to expose Swagger metadata so that PowerApps can discover what can be consumed.&lt;br /&gt;
 Swagger is a very popular RESTful API description metadata so services can be discoverable from the outside. It is basically what Azure API Apps, Azure Logic Apps, and PowerApps use to understand how to use services/APIs and to connect to them.&lt;br /&gt;
 Azure API Apps already provide Swagger metadata by default, but if you want to consume Azure Mobile App services (or any other HTTP service, like a regular ASP.NET Web API service) from PowerApps, you need to add functionality so they provide Swagger metadata.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Swashbuckle&lt;/b&gt;&lt;br /&gt;
 Swashbuckle is a convenient way to rapidly and automatically generate Swagger metadata from a Web API .NET project, like any ASP.NET Web API service or an Azure Mobile App service.&lt;br /&gt;
 Swashbuckle is basically a NuGet component that you can add to your Web API service so that it automatically generates the Swagger metadata related to your methods (no need to manually generate it).&lt;br /&gt;
&lt;span style="color: #999999;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item><item><title>Main frameworks and SDKs for C#/Xamarin/.NET</title><link>http://computingtech.blogspot.com/2017/12/main-frameworks-and-sdks-for-cxamarinnet.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Sun, 31 Dec 2017 17:56:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-6929163780265001567</guid><description>&lt;i&gt;MVVM built-in in Xamarin.Forms&lt;/i&gt;&lt;br /&gt;
 Appropriate when using Xamarin.Forms and you want to implement a clean and simplified MVVM architecture for your client apps targeting iOS, Android, and Windows UWP.&lt;br /&gt;
 You can use an MVVM framework that comes out-of-the-box with Xamarin.Forms.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;MvvmCross&lt;/i&gt;&lt;br /&gt;
 Appropriate when using traditional Xamarin and .NET for Windows UWP and you want to implement a MVVM architecture for your client apps targeting iOS, Android, and Windows UWP.&lt;br /&gt;
 MvvmCross is a popular and open source MVVM framework that has been crossplatform since its creation and has been tested in many cross-platform apps.&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
&lt;i&gt;MVVM light toolkit&lt;/i&gt;&lt;br /&gt;
 Appropriate when using traditional Xamarin and .NET for Windows UWP and you want to implement a MVVM architecture for your client apps targeting iOS, Android, and Windows UWP.&lt;br /&gt;
 MVVM light toolkit is a popular and open source MVVM framework that was widely used for WPF, Silverlight, Windows Store, and for Windows Phone. It added support for Xamarin.Android and Xamarin.iOS as a cross-platform framework in v5 in 2014.&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
&lt;i&gt;Prism for Xamarin.Forms&lt;/i&gt;&lt;br /&gt;
 Appropriate when using Xamarin.Forms and you want to implement&lt;br /&gt;
 composite apps with MVVM architecture for your client apps targeting iOS, Android, and Windows UWP.&lt;br /&gt;
 Prism is not just an open source MVVM framework—it also offers additional capabilities, like dependency injection, commands, EventAggregator, and other capabilities.&lt;br /&gt;
 Prism was originally created by the Microsoft Patterns &amp;amp; Practices team, was open sourced in 2015, and has been driven by an independent team ever since.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Azure Mobile Apps .NET Client SDK&lt;/i&gt;&lt;br /&gt;
 Appropriate when consuming Azure Mobile App services from Xamarin or .NET apps.&lt;br /&gt;
 It allows you to add a scalable back end to your connected client applications and to have structured storage, authentication, push notifications, and offline scenarios (automatic data-sync between local SQLite in the device and Azure SQL Database in the cloud) to your Xamarin- or .NET-based mobile apps using Microsoft Azure Mobile Apps.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Akavache Cache and local store&lt;/i&gt;&lt;br /&gt;
 Appropriate when implementing client cache/store for native apps, like Xamarin apps (iOS and Android) and .NET apps (Windows and UWP apps).&lt;br /&gt;
 Akavache is an asynchronous, persistent (that is, writes to disk) key-value store created for writing apps in C#, based on SQLite.&lt;br /&gt;
 Akavache is great for both storing important data (like user settings), as well as cached local data that expires.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;SQLite.NET&lt;/i&gt;&lt;br /&gt;
 Appropriate when storing relational SQL data locally in the mobile device into a SQLite database.&lt;br /&gt;
 SQLite.NET is an open source, minimal library to allow .NET and Xamarin apps to store data in SQLite databases.&lt;br /&gt;
 It is a thin, fast, and efficient library, not a full SQLite driver. If you need that, use Mono.Data.SQLite or csharp-sqlite.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;SQLCipher&lt;/i&gt;&lt;br /&gt;
 Appropriate for Xamarin and .NET apps when you need to secure/encrypt SQLite database in the device.&lt;br /&gt;
 It allows for transparent and secure 256-bit AES encryption of SQLite database files.&lt;br /&gt;
 SQLCipher has a small footprint and great performance. As such, it's ideal for protecting embedded application databases and is well-suited for mobile development.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;FileDb NoSQL .NET database&lt;/i&gt;&lt;br /&gt;
 Appropriate when storing NoSQL data locally in the mobile device into local files.&lt;br /&gt;
 FileDb is a simple database solution for .NET and Xamarin apps.&lt;br /&gt;
 FileDb is a NoSQL database meant for use as a local data store for applications.&lt;br /&gt;
 Take advantage of LINQ to join tables, and get all the relational and grouping power that LINQ offers.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item><item><title>Development tools for Xamarin (iOS, Android, Windows)</title><link>http://computingtech.blogspot.com/2017/12/development-tools-for-xamarin-ios.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Sat, 30 Dec 2017 17:50:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-1367805401749701037</guid><description>&lt;b&gt;Microsoft Visual Studio with Xamarin Extension&lt;/b&gt;&lt;br /&gt;
 Appropriate when you want to take advantage of a full IDE, like Visual Studio.&lt;br /&gt;
 You can visually design views with the iOS and Android, edit code with IntelliSense, and debug C# code in apps running in emulators or real devices.&lt;br /&gt;
 Take advantage of advanced Visual Studio features and your C# skills.&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;Xamarin Studio&lt;/b&gt;&lt;br /&gt;
 Appropriate when you want to use an IDE that works cross-platform on Mac OS X and Windows.&lt;br /&gt;
 You can visually design views with the iOS and Android, edit code with IntelliSense, and debug C# code in apps running in emulators or real devices.&lt;br /&gt;
 Take advantage of your C# skills.&lt;br /&gt;
&lt;span style="color: #999999;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item><item><title>Development platforms and technologies for C# cross-platform mobile (iOS, Android, Windows)</title><link>http://computingtech.blogspot.com/2017/12/development-platforms-and-technologies.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Fri, 29 Dec 2017 17:43:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-9137566809855659842</guid><description>&lt;b&gt;PCL (Portable Class Library)&lt;/b&gt;&lt;br /&gt;
 Take advantage of your .NET/C# skills, and share code across platforms.&lt;br /&gt;
 Share key artifacts for C# cross-platform across Windows, iOS, and Android.&lt;br /&gt;
 Appropriate when developing with traditional Xamarin, Xamarin.Forms, Windows 10 UWP, and .NET.&lt;br /&gt;
 You can share most of the C# logic across platforms, like Model-View-ViewModel (MVVM), and even the views/XAML, if using Xamarin.Forms.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Xamarin&lt;/b&gt;&lt;br /&gt;
 Take advantage of your .NET/C# skills while building native apps.&lt;br /&gt;
 Traditional Xamarin&lt;br /&gt;
o You can create apps for iOS, Android, and Mac, with specially tailored UI per platform (it is possible to have a different UI/views per platform), while sharing the same C# logic.&lt;br /&gt;
o Should be used in conjunction to PCL to share approximately 80 percent of the code (C# logic) between Xamarin and UWP/.NET apps.&lt;br /&gt;
o Appropriate when building mobile apps with the best possible UI and performance, like B2C apps.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Xamarin.Forms&lt;/b&gt;&lt;br /&gt;
 Xamarin.Forms&lt;br /&gt;
o You can share most of the implementation (approximately 95 percent, including C# and XAML views) in a PCL, when creating apps for iOS, Android, and Windows 10 UWP.&lt;br /&gt;
o Appropriate when building apps for iOS, Android, and Windows, which will have the same UI/views with almost no differences in layout across platforms.&lt;br /&gt;
o Can be used in a mixed approach (Xamarin + Xamarin.Forms) so you can get the best of both worlds—using Xamarin.Forms for simpler views and traditional Xamarin with native views and UWP views, depending on the platform.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;UWP with .NET&lt;/b&gt;&lt;br /&gt;
 Take advantage of your .NET/C# skills.&lt;br /&gt;
 With Universal Windows Platform (UWP), you can create the same app running on Windows 10 (desktop/tablet) and Windows 10 Mobile.&lt;br /&gt;
 Should be used in conjunction with PCL, to share approximately 80 percent of the code (C# logic) between Xamarin and UWP/.NET apps.&lt;br /&gt;
 Appropriate when building mobile apps with the best possible UI and performance, like B2C apps.&lt;br /&gt;
&lt;span style="color: #999999;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Hybrid and cross-platform: Visual Studio Tools for Apache Cordova</title><link>http://computingtech.blogspot.com/2017/12/hybrid-and-cross-platform-visual-studio.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Thu, 28 Dec 2017 17:27:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-5120791177946747670</guid><description>&lt;b&gt;Development platforms and technologies for hybrid/Cordova mobile apps (iOS, Android, Windows)&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Apache Cordova&lt;/i&gt;&lt;br /&gt;
 Use your HTML/JavaScript skills.&lt;br /&gt;
 Appropriate when building mobile apps, like B2E or B2B apps.&lt;br /&gt;
 You can create mobile apps that are fully installed in the device so that you can also have offline scenarios.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Cordova plug-ins&lt;/i&gt;&lt;br /&gt;
 It is part of the Apache Cordova platform.&lt;br /&gt;
 A plug-in is a bit of add-on code that provides a JavaScript interface to native components.&lt;br /&gt;
 Using plug-ins, your app can use native device capabilities beyond what is available to pure web apps.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Microsoft development tools for hybrid/Cordova&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;Visual Studio Tools for Apache Cordova&lt;/i&gt;&lt;br /&gt;
 Appropriate when you want to take advantage of a full IDE like Visual Studio.&lt;br /&gt;
 You can edit code with IntelliSense and debug JavaScript/TypeScript.in apps running in emulators or real devices, configure Cordova projects and plugins easily in project settings.&lt;br /&gt;
 Take advantage of your Visual Studio skills and insights.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Visual Studio Code + Cordova Tools Extension + Cordova CLI (Command Line Interface)&lt;/i&gt;&lt;br /&gt;
 Appropriate when you want to use a light editor like Visual Studio Code, which is also cross-platform (Visual Studio Code runs on Windows, Mac, and Linux).&lt;br /&gt;
 You can debug your code, find commands in the Command Palette, and use IntelliSense.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Languages for hybrid mobile apps (iOS, Android, Windows)&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;JavaScript&lt;/i&gt;&lt;br /&gt;
 Appropriate when building typical Cordova apps which are not very complex in the JavaScript layer.&lt;br /&gt;
 Take advantage of your web development and JavaScript skills.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;TypeScript&lt;/i&gt;&lt;br /&gt;
 TypeScript is a programming language created by Microsoft that is a superset of JavaScript. You can develop a Cordova app with TypeScript that will compile into simple JavaScript to be deployed as part of your app.&lt;br /&gt;
 Appropriate when building complex business applications with a heavy volume of client code.&lt;br /&gt;
 With TypeScript, you can have a better structured code, thanks to certain object orientation, based on classes, modules, and interfaces.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Main web frameworks for Apache Cordova&lt;/b&gt;&lt;br /&gt;
&lt;i&gt;AngularJS&lt;/i&gt;&lt;br /&gt;
 AngularJS is a very popular JavaScript framework created by Google. It is a library written in JavaScript (although Angular 2 is written in TypeScript).&lt;br /&gt;
 You can have dynamic views in your app. AngularJS lets you extend HTML vocabulary for your application.&lt;br /&gt;
 Appropriate when creating Cordova apps, either with JavaScript or TypeScript.&lt;br /&gt;
 Take advantage of a resulting environment that is expressive, readable, and quick to develop.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Ionic&lt;/i&gt;&lt;br /&gt;
 Ionic is a front-end SDK for developing hybrid mobile apps. It offers a library of mobile-optimized HTML, CSS, and JavaScript CSS components, gestures, and tools for building highly interactive apps.&lt;br /&gt;
 Built with Sass and optimized for AngularJS.&lt;br /&gt;
 Most popular choice when developing Cordova apps with AngularJS and/or jQuery.&lt;br /&gt;
 You can take advantage of your web development skills.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Onsen UI&lt;/i&gt;&lt;br /&gt;
 Onsen UI framework is designed and implemented to deliver a positive user experience for your hybrid apps.&lt;br /&gt;
 Appropriate when developing Cordova apps with AngularJS and/or jQuery.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Backbone&lt;/i&gt;&lt;br /&gt;
 Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, and views with declarative event handling.&lt;br /&gt;
 Appropriate when creating rich client-side applications.&lt;br /&gt;
 You can create a structured code, decoupling views from models.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Securing mobile apps end to end with Microsoft Intune MAM</title><link>http://computingtech.blogspot.com/2017/12/securing-mobile-apps-end-to-end-with.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Wed, 27 Dec 2017 17:22:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-3776402990728254586</guid><description>IT administrators can deploy MAM policies that protect data and help safeguard secure access. Intune&lt;br /&gt;
App SDK typically handles the implementation of these policies, creating a consistent experience for&lt;br /&gt;
administrators across apps and letting developers to quickly turn on MAM.&lt;br /&gt;
&lt;br /&gt;
The Intune App SDK (MAM) supports Xamarin apps, Cordova apps, and also single-platform language/SDK apps like Objective-C apps for iOS and Java/Android-SDK apps for Android.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;After an app is set up for MAM, an IT administrator can do the following:&lt;br /&gt;
&lt;br /&gt;
 Control users’ ability to move corporate documents Administrators can deploy a policy that turns off file backup apps to prevent backing up corporate data to the cloud.&lt;br /&gt;
&lt;br /&gt;
 Configure clipboard restrictions They can deploy a policy so that users are unable to use the clipboard to cut/copy from an Intune-managed app and to paste into a nonmanaged app.&lt;br /&gt;
&lt;br /&gt;
 Enforce corporate access requirements Administrators can require an access challenge to the user, such as full authentication or app PIN, to launch the app. Authentication relies on the users’ Active Directory identity and therefore can benefit from all Active Directory identity features. Intune App SDK uses Azure AD to provide an SSO experience in which the credentials, after they are entered, are reused for subsequent sign-ins. Authentication of identity management solutions federated with Azure AD are also supported.&lt;br /&gt;
&lt;br /&gt;
 Enforce encryption on saved data Administrators can enforce a policy that ensures that all data stored on the device by the app is encrypted.&lt;br /&gt;
&lt;br /&gt;
 Remotely wipe corporate data Corporate data can be remotely wiped from an Intunemanaged app when the device is unenrolled from Microsoft Intune. This feature is identity-based and deletes only the files that relate to the corporate identity of the end user.&lt;br /&gt;
&lt;br /&gt;
 Enforce the use of a managed browser Using the Intune-managed browser helps to ensure that links that appear in emails (in an Intune-managed mail client) are kept within the domain of Intune-managed apps.&lt;br /&gt;
&lt;br /&gt;
 Check device health and compliance Administrators can check the health of the device and its compliance with corporate policies before users access Intune-managed apps. On the iOS platform, this policy checks whether the device has been jailbroken. On the Android platform, this policy checks whether the device has been rooted.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Managing client mobile apps and devices</title><link>http://computingtech.blogspot.com/2017/12/managing-client-mobile-apps-and-devices.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Tue, 26 Dec 2017 17:18:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-1152280313839114173</guid><description>As part of Enterprise Mobility Suite (EMS), Microsoft Intune provides organizations with the ability to manage mobile devices, PCs, and apps so that employees are productive and a company’s information remains protected.&lt;br /&gt;
&lt;br /&gt;
 Mobile device management IT administrators use mobile device management to manage, monitor, and secure employees’ mobile devices. Intune supports MDM of iOS, Android, Mac, and Windows devices. IT administrators can manage both personal and corporate devices, with users’ ability to enroll their devices and install apps with Intune via a company portal app. Using the Intune admin console, IT administrators can manage a variety of scenarios, including policies, corporate email, certificates, VPN, and many more device settings. They also can use Intune Conditional Access policies to control access to on-premises Microsoft Exchange email from mobile devices.&lt;br /&gt;
&lt;br /&gt;
 Mobile app management MAM is typically used for deploying and managing employees’ apps. With Intune MAM, IT administrators can deploy and manage both store and internal company&lt;br /&gt;
apps, while ensuring that data remains protected in these apps through MAM policies configured&lt;br /&gt;
by the administrator.&lt;br /&gt;
&lt;br /&gt;
Intune MAM also offers a variety of options for data protection. You can manage apps with and without MDM, making it possible for companies with BYOD devices to manage apps with little friction for their employees. You also can deploy MAM alongside third-party MDM providers with a goal to meet customers’ needs, regardless of where they are. In addition, IT administrators can manage a large ecosystem of MAM-compliant productivity apps, including Microsoft Office apps and third-party apps such as Adobe Reader and Box.&lt;br /&gt;
&lt;br /&gt;
Developers can set up their mobile apps for MAM through Intune App SDK, which supports native iOS and Android, in addition to Cordova and Xamarin. IT administrators can also utilize an app-wrapping tool to configure compiled LoB apps for management. After an app has been set up for MAM, administrators can deploy a variety of policies to protect corporate app data, leaving personal data intact, to help ensure an uncompromised user experience.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Data protection on device (data at rest)</title><link>http://computingtech.blogspot.com/2017/12/data-protection-on-device-data-at-rest.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Mon, 25 Dec 2017 13:11:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-5939081992994659202</guid><description>Although base device encryption capabilities and cross-platform plug-ins and components can provide a certain degree of security for app developers on their own, the Microsoft Intune MAM&lt;br /&gt;
features provide the ability to enforce policies at the app level, including encryption of all local&lt;br /&gt;
data. It is therefore a low friction way to increase your security.&lt;br /&gt;
&lt;br /&gt;
Intune provides two solutions for implementing its MAM features for Android and iOS devices: an&lt;br /&gt;
app-wrapping tool, and an app SDK. You can run the app-wrapping tool on internal line-of-business&lt;br /&gt;
(LoB) Android and iOS apps to activate certain capabilities such as limiting cut-copy-paste while the&lt;br /&gt;
app is running, requiring a PIN, or requiring app-level encryption. The Intune App SDK takes this a&lt;br /&gt;
step further, making it possible for apps to designate corporate data only for protection, leaving&lt;br /&gt;
personal data completely intact, and ensuring that users cannot store their data in personal appconnected services.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Threats analysis</title><link>http://computingtech.blogspot.com/2017/12/threats-analysis.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Sun, 24 Dec 2017 13:09:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-2473331728654563535</guid><description> Identity protection Azure Active Directory Identity Protection takes secure identity and access&lt;br /&gt;
management to the next level by detecting attacks in real time, informing you of risks, and applying controls to help keep your enterprise safe. The service detects suspicious activities, based on signals like brute-force attacks, leaked credentials, sign-ins from unfamiliar locations, infected devices, and more, and provides remediation recommendations to protect against these activities in real time. Based on these suspicious activities, a user risk severity is calculated, and you can configure risk-based policies that automatically protect the identities of your organization from future threats. These risk-based policies, in addition to other conditional access controls provided by Azure AD and other EMS services, can either block or provide adaptive remediation actions that include password reset requests and MFA. The service is built on a decade of Microsoft experience in protecting consumer identities, and it has special features to reduce falsepositive rates and noise.&lt;br /&gt;
&lt;br /&gt;
 On-premises threat detection Microsoft Advanced Threat Analytics (ATA) is an on-premises product that can help customers protect their enterprise from advanced targeted attacks by automatically learning, analyzing, and identifying normal and abnormal entity (user, devices, and&lt;br /&gt;
resources) behavior. ATA takes advantage of deep-packet inspection technology as well as information from additional data sources (SIEM and Active Directory) to build an organizational&lt;br /&gt;
security graph and to detect advanced attacks in real time. The solution is agnostic to the device type and operating system version—ATA witnesses all authentication and authorization.&lt;br /&gt;
&lt;br /&gt;
 SaaS/Cloud Application Security Microsoft Cloud Application Security, based on the Microsoft&lt;br /&gt;
Adallom acquisition, is a comprehensive cloud service that provides deeper visibility, stronger controls, and increased security for the cloud applications.&lt;br /&gt;
&lt;br /&gt;
 Malware detection When building an internal-facing app, Intune mobile device management and mobile application management solutions detect malware on Android and report jailbroken or rooted devices for iOS and Android. You also can use Intune MAM capabilities on their own or to complement an existing MDM solution.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Communication security</title><link>http://computingtech.blogspot.com/2017/12/communication-security.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Sat, 23 Dec 2017 10:11:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-5864478243025673741</guid><description> Key management Secure Sockets Layer (SSL) provides an essential building block for all secure&lt;br /&gt;
communications, and all Azure services support SSL-based communication. Azure Key Vault can&lt;br /&gt;
help improve overall network-based communication security by centralizing sensitive certificates,&lt;br /&gt;
keys, and secrets in a secure, audited hardware- or software-based central service and by removing the need for apps to maintain these values directly. With this centralization, organizations can regularly change keys globally without having to redeploy apps or services, in addition to providing a more granular level of control over the keys themselves.&lt;br /&gt;
&lt;br /&gt;
 VPN and Wi-Fi access Microsoft Intune can provide additional peace of mind by enforcing mobile device resource access control policies. Using Intune, you can require VPN or secure Wi-Fi access to connect to key services, helping you to manage device profiles.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Identity, SSO, authentication, and authorization</title><link>http://computingtech.blogspot.com/2017/12/identity-sso-authentication-and.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Fri, 22 Dec 2017 10:07:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-7701573940591126078</guid><description> SSO corporate authentication and authorization, Azure Active Directory, and Active Directory Federation Services Active Directory provides an industry-leading identity server, both in the cloud and on-premises, through Azure Active Directory (Azure AD) and Active Directory Federation Services (AD FS). Developers can securely authenticate, authorize, access information in Active Directory and can take advantage of device-level SSO and MFA capabilities, along with storage through the powerful Active Directory Authentication Library (ADAL), which is available for all major native and cross-platform mobile and server-side technologies. In addition, Intune MAM features include the ability to force authentication against Active Directory for any app, further enhancing an enterprise’s ability to control access to sensitive apps and data. Additionally, products like Azure Active Directory Identity Protection help security-conscious organizations implement Microsoft Identity as a Service (IDaaS) solutions with confidence.&lt;br /&gt;
&lt;br /&gt;
 Internet authentication social authentication providers Azure App Service Authorization provides a unified, simplified mechanism for authenticating against Azure AD, Facebook, Twitter, Google, and Microsoft account—from not only services and web apps, but also mobile apps, through the use of Azure Mobile Apps libraries, plug-ins, and SDKs for Android, iOS, Windows, Xamarin, and Cordova. The common interface means that developers are abstracted from provider interface changes and will be able to instantly take advantage of new auth providers as they come online in the service. Azure AD now also has a preview of B2C support, giving you the ability to manage sign-ins, using credentials from Facebook, Google, LinkedIn, Amazon, and Microsoft account, and to take advantage of the same power of Azure AD available for enterprise accounts. It is currently in preview for Android, iOS, and Windows native apps, with other technologies coming soon.&lt;br /&gt;
&lt;br /&gt;
 Role-based access control (RBAC), Rights Management Azure AD and AD FS are essential directories for configuring RBACs for mobile apps. Organizations can establish specific roles that have access to an app through Active Directory groups that can then be validated by using the Active Directory Graph API. In addition to app-level access controls, the broad ADAL support for server-based technologies like .NET and Node.js make it possible for organizations to further enhance their security by using these same capabilities to provide or restrict access to specific server-side data sources. In the cloud, Azure Mobile Apps can further streamline the process of getting up and running with RBACs through the use of features like Easy Tables that set up the entire infrastructure needed while still enabling developers to implement customized authorization controls. Finally, Azure Rights Management is a comprehensive cloud service with which you can implement tight role-based controls to Microsoft Office, SharePoint, and OneDrivepersisted data that extends to apps using Office APIs to access data.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Securing and managing mobile apps</title><link>http://computingtech.blogspot.com/2017/12/securing-and-managing-mobile-apps.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Thu, 21 Dec 2017 10:03:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-2278512944981681530</guid><description>Developers can build secure mobile apps, and IT managers can feel confident by securely managing mobile apps and devices in an enterprise “Bring Your Own Device” (BYOD) environment, along with their desktop infrastructure.&lt;br /&gt;
&lt;br /&gt;
Securing mobile apps&lt;br /&gt;
With the range of possible mobile app technologies and the mobile back ends, Microsoft provides recommendations and solutions for developers creating their mobile app strategy. This ranges from&lt;br /&gt;
components to create mobile apps that securely manage data (such as data encryption) or to provide&lt;br /&gt;
authentication of the user (like single sign-on with Microsoft Azure Active Directory), to the ability for IT managers to securely manage the deployment of apps and devices in a corporate environment. It extends through Mobile Application Management (MAM)/Mobile Device Management (MDM)&lt;br /&gt;
capabilities with Microsoft Intune and Microsoft Enterprise Mobility.&lt;br /&gt;
&lt;br /&gt;
There are many security considerations to take into account in a mobile app strategy that cover&lt;br /&gt;
application scenarios, IT, and developer scenarios.&lt;br /&gt;
&lt;br /&gt;
 User identity, single sign-on (SSO), authorization and authentication Using Azure App Service and the SDKs, developers can authenticate users through a number of means such as Active Directory, Azure Active Directory for SSO support, or other social sign-in systems, such as Twitter, Facebook, and Google. It includes more fine-grained or higher levels of security through multifactor authentication (MFA) and role-based access to APIs. Azure App Service provides developers with a simple authentication process to handle the management of tokens and to facilitate federated authentication across enterprise back-end systems and SaaS providers.&lt;br /&gt;
&lt;br /&gt;
 Back-end API management You can use Azure API Management to drive API consumption among internal teams, partners, and developers while benefiting from the business and operational insights available in the Azure portal. API Management gives you the tools you need for end-to-end API management—provisioning user roles; creating usage plans and quotas; applying policies for transforming payloads; and setting up throttling, analytics, monitoring, and alerts.&lt;br /&gt;
&lt;br /&gt;
 Data at rest (local encryption) or in motion (communication) Azure Mobile App SDK provides the means to securely encrypt data stored locally on the device during offline/online scenarios, but developers can also make use of SDKs, Cordova plug-ins, and more for specific app scenarios, with and without Azure SDKs.&lt;br /&gt;
&lt;br /&gt;
 Tamper and malware detection Microsoft Antimalware for Azure Cloud Services and Virtual Machines is a real-time protection capability that helps identify and remove viruses, spyware, and&lt;br /&gt;
other malicious software, with configurable alerts when known malicious or unwanted software&lt;br /&gt;
attempts to install itself or run on your Azure systems.&lt;br /&gt;
&lt;br /&gt;
 Keys, certificates, and secrets Azure Key Vault helps safeguard cryptographic keys and secrets used by cloud applications and services. By using Key Vault, you can encrypt keys and secrets (such as authentication keys, storage account keys, data encryption keys, .PFX files, and passwords) by using keys that are protected by hardware security modules (HSMs). Key Vault streamlines the key management process and enables you to maintain control of keys that access and encrypt your data.&lt;br /&gt;
&lt;br /&gt;
 Application and device management (MAM/MDM) With the increasing volume and diversity&lt;br /&gt;
of both BYOD and corporate-owned devices being used in organizations today, a growing challenge for IT departments is keeping corporate information secure. Microsoft MAM and MDM solutions based on Microsoft Intune help minimize this complexity by offering management capabilities both on-premises and in the cloud, all from a single console.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Analyzing the health of back-end services by using Visual Studio Application Insights</title><link>http://computingtech.blogspot.com/2017/12/analyzing-health-of-back-end-services.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Wed, 20 Dec 2017 23:46:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-154984851395833464</guid><description>Application Insights&amp;nbsp; is an extensible analytics service that monitors your live application. It&lt;br /&gt;
helps you to detect and diagnose performance issues and to understand what users actually do with&lt;br /&gt;
your app. Application Insights designed for developers to help you to continuously improve the&lt;br /&gt;
performance and usability of your services or applications.&lt;br /&gt;
&lt;br /&gt;
Application Insights works with both web/services and stand-alone apps on a wide variety of&lt;br /&gt;
platforms: .NET or J2EE, hosted on-premises or in the cloud.&lt;br /&gt;
&lt;br /&gt;
Application Insights is aimed at the development team. You can use it to do the following:&lt;br /&gt;
 Analyze usage patterns to understand your users better and to continuously improve your app.&lt;br /&gt;
&lt;br /&gt;
 Count page views, new and returning users, geolocation, platforms, and other core usage&lt;br /&gt;
statistics.&lt;br /&gt;
&lt;br /&gt;
 Trace usage paths to assess the success of each feature.&lt;br /&gt;
&lt;br /&gt;
 Detect, triage, and diagnose performance issues, and fix them before most of your users are&lt;br /&gt;
aware.&lt;br /&gt;
&lt;br /&gt;
 Get alerts on performance changes or crashes.&lt;br /&gt;
&lt;br /&gt;
 Explore metrics to help diagnose performance issues, such as response times, CPU usage, and&lt;br /&gt;
dependency tracking.&lt;br /&gt;
&lt;br /&gt;
 Get availability tests for web apps.&lt;br /&gt;
&lt;br /&gt;
 Gain insight from exception reports and alerts.&lt;br /&gt;
&lt;br /&gt;
 Access the powerful diagnostic log search (including log traces from your favorite logging&lt;br /&gt;
frameworks).&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>DevOps for back-end mobile services using VSTS, Azure, and Application Insights</title><link>http://computingtech.blogspot.com/2017/12/devops-for-back-end-mobile-services.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Tue, 19 Dec 2017 23:02:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-4961359470719640917</guid><description>Developers and testers can easily and quickly provision production-like dev-test environments by&lt;br /&gt;
using templates in Azure. This pipeline can begin with Visual Studio or VSTS by initiating automated builds for every check-in and with automated deployments (CD).&lt;br /&gt;
&lt;br /&gt;
Developers can create automated tests at every stage of deployment and can define necessary&lt;br /&gt;
approvals before and after deployments. There are two fundamental technologies that are the pillars in Azure’s infrastructure:&lt;br /&gt;
&lt;br /&gt;
 Azure Resource Manager Developers can provision virtual machines and any Azure PaaS components by using ARM templates saved in source control using tools with which they are already comfortable working.&lt;br /&gt;
&lt;br /&gt;
 Azure Marketplace templates Developers can use the cloud as a test harness for a number of real-world situations, such as testing a large number of requests and multiple clients, simulating realistic and distributed load, at the same time validating the scale and tolerance of your application. Azure Marketplace templates have a host of test frameworks and services that give developers the ability to do functional and performance testing. Customers can take advantage of the on-demand and scalable infrastructure of Visual Studio Team Services load-testing service to generate unlimited virtual users for your application from various Azure datacenters around the globe.&lt;br /&gt;
&lt;span style="color: #999999;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Getting mobile customer insights and implementing marketing campaigns by using Azure Mobile Engagement</title><link>http://computingtech.blogspot.com/2017/12/getting-mobile-customer-insights-and.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Mon, 18 Dec 2017 22:41:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-2378076064281509271</guid><description>Azure Mobile Engagement is a SaaS user-engagement platform that provides data-driven insights&lt;br /&gt;
into mobile app usage by end users, along with real-time user segmentation. It also makes&lt;br /&gt;
contextually aware push notifications possible as well as in-app messaging. With Azure Mobile Engagement, application publishers and marketing professionals can better&lt;br /&gt;
understand and interact with the app users.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Real-time actionable analytics to maximize return on investment&lt;br /&gt;
You can initiate engagement scenarios according to user behavior and demographics by combining&lt;br /&gt;
Big Data collection with real-time message processing. Mobile Engagement can answer nearly any&lt;br /&gt;
question relevant to your particular business needs. For example, you can create custom dashboards&lt;br /&gt;
to measure key performance indicators (KPIs), rapidly find and fix usage bottlenecks in a user funnel&lt;br /&gt;
path, track retention and user stickiness, and then determine which campaigns are driving the highest&lt;br /&gt;
return on investment. Using the Mobile Engagement 360-degree user path view (see Figure 4-5), you&lt;br /&gt;
can easily and continually enhance and optimize the user experience (UX), driving higher retention&lt;br /&gt;
rates and improved app usage.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Value-added push and communications platform&lt;br /&gt;
Mobile Engagement provides in-app messaging capabilities and works seamlessly with native push&lt;br /&gt;
notifications gateways such as Google GCM, Apple APNS, and Microsoft MPNS. And it goes beyond, giving you the power to create targeted campaigns by analyzing user behaviors to identify unique customer segments.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Open APIs and ease of integration&lt;br /&gt;
By providing open APIs and SDKs that ease integration, you can use data from your existing CRM,&lt;br /&gt;
CMS, or other back-end systems. This makes it possible for you to further improve your audience&lt;br /&gt;
targeting and protect your investments.&lt;br /&gt;
&lt;span style="color: #999999;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Gathering operational and behavioral analytics by using HockeyApp</title><link>http://computingtech.blogspot.com/2017/12/gathering-operational-and-behavioral.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Sun, 17 Dec 2017 22:18:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-8436010359926833517</guid><description>You can track application health alongside usage metrics and application crash analytics. Get powerful dashboards, in which you can filter for different views and levels of detail—from segmenting data to drilling down to an event.&lt;br /&gt;
&lt;br /&gt;
Understanding real-world crash behavior is essential for mobile applications. HockeyApp’s integration of fully open-source SDKs provides highly reliable automatic crash collection of every application crash. HockeyApp crash collection is supported natively on most major mobile platforms: iOS, Android, Windows, Xamarin, Cordova, React Native, and others.&lt;br /&gt;
&lt;br /&gt;
The HockeyApp dashboard provides the app owner with a summary of crashes and user feedback,&lt;br /&gt;
including messages from users and automatic screenshots. It groups the crash reports on all platforms&lt;br /&gt;
by similarities.&lt;br /&gt;
&lt;br /&gt;
You can enjoy the benefits of powerful crash analytics tools, such as full symbolization support for iOS and .NET native code, and de-obfuscation of ProGuard on Android provides actionable human&lt;br /&gt;
readable stack traces for all crashes. Automatic crash grouping identifies crashes resulting from the&lt;br /&gt;
same cause. Because of HockeyApp’s integration with most major bug-tracking systems, you take&lt;br /&gt;
advantage of streamlined workflows for notification and status tracking of crash defects. You can&lt;br /&gt;
utilize the HockeyApp Mac app to view crash reports and navigate directly to the crashing line of code in your IDE. HockeyApp helps you to understand the device and OS distribution for each crash to gain insight into platform issues. Enable faster triage by getting the details on total impacted users for each crash.&lt;br /&gt;
&lt;br /&gt;
HockeyApp gives you an opportunity to learn about basic user behavior automatically—without&lt;br /&gt;
additional coding. It helps you to fully understand DAU, MAU, and user sessions for your application and each individual version. You can dive deeper into user behavior by tracking any user action as a custom event; visualize custom event statistics to learn about factors influencing end user behavior; and engage directly with end users via feedback with bi-directional communication from end users inapp to the development team, including the ability to share screenshots of customers’ experiences.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Managing a beta release program by using HockeyApp</title><link>http://computingtech.blogspot.com/2017/12/managing-beta-release-program-by-using.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Sat, 16 Dec 2017 22:12:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-8761818453166453449</guid><description>HockeyApp provides a comprehensive solution for management of betas across your applications. All workflows for creating and managing betas are supported. Upload of beta builds is simple through integration with workflows used by a development team to produce builds, from manual local development machine builds to integration with CI servers. You can easily manage builds by placing them in a central location—the HockeyApp service.&lt;br /&gt;
&lt;br /&gt;
With HockeyApp, you can take advantage of direct over-the-air delivery to testers and to internal or&lt;br /&gt;
external beta customer devices. Through a centralized dashboard, accessible via the web or native&lt;br /&gt;
mobile apps, testers can have access to beta apps and all available versions.&lt;br /&gt;
&lt;br /&gt;
Using the convenient mobile app notification service, you can keep your users updated about new&lt;br /&gt;
versions or control versions in the wild by requiring users to update to a specific version. HockeyApp provides a rich set of management tools for users and devices. Users can sign in by using existing accounts in common single sign-on (SSO) providers such as Google, Facebook, Twitter, Microsoft, and Azure Active Directory. You can gain new testers via automatic recruitment and invitation via URL links or email. You also can control access to apps and beta per user or via teams, with fine-grained controls—even down to specific versions. HockeyApp also collects user device information, helping to manage UDIDs for iOS and to understand the device test coverage.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Continuous integration, deployment, and release management using VSTS/TFS, Xamarin Test Cloud, and HockeyApp</title><link>http://computingtech.blogspot.com/2017/12/continuous-integration-deployment-and.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Fri, 15 Dec 2017 22:06:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-9213063439034654707</guid><description>Utilizing the comprehensive yet easy-to-use continuous integration (CI) support in VSTS and TFS,&lt;br /&gt;
developers can set up and maintain an automated build and test server for any mobile platform,&lt;br /&gt;
without needing to write hundreds of lines of custom script code. This means that you can spend&lt;br /&gt;
more of your time building high-quality mobile apps instead of creating the infrastructure to make&lt;br /&gt;
them operational. The completely revamped core of VSTS and TFS is fully cross-platform and adopts a lightweight task framework with a library of prebuilt tasks and an entire new marketplace of extensions. For the first time, builds can run on Windows, Linux, or Mac machines, opening up mobile device and server-based scenarios like never before.&lt;br /&gt;
&lt;br /&gt;
To facilitate better release agility, the new Release Management (RM) capability in VSTS/TFS makes it possible for you to set up a continuous delivery (CD) server that streamlines the process of publishing updates to beta and public stores while giving you the control and visibility needed to match your organizational needs.&lt;br /&gt;
&lt;br /&gt;
Key benefits include the following:&lt;br /&gt;
 Continuous integration Provides a simplified, task-based experience for setting up a CI server for both native (Android, iOS, and Windows) and cross-platform (Xamarin, Cordova, and React Native) mobile apps, in addition to Microsoft and non-Microsoft (Node.js, Java)–based server technologies.&lt;br /&gt;
&lt;br /&gt;
 Continuous testing Builds display integrated test results, which you can run by using Grunt, Gulp, xctool, and Gradle, among others, and which allow for automatic work item creation when failures occur.&lt;br /&gt;
&lt;br /&gt;
 Test clouds Build/test pipeline integrations with Xamarin Test Cloud or with partners like Perfecto Mobile, Sauce Labs, and Keynote to run your integration and UI automation tests as part of your CI builds.&lt;br /&gt;
&lt;br /&gt;
 Build agents Use the cloud-hosted build machines provided by VSTS (Windows) and MacinCloud (OS X), or configure a self-hosted build agent running on your own infrastructure that integrates with on-premises TFS or cloud-hosted Team Services instances.&lt;br /&gt;
&lt;br /&gt;
 Continuous delivery Automate the deployment of your mobile apps, regardless of whether you’re publishing to HockeyApp (for beta), Google Play, or the App Store (for production). Continuously deploy the service side of your mobile apps by using Azure deployment tasks, along with Chef, Docker, and more.&lt;br /&gt;
&lt;br /&gt;
 Release management Configure multiple environments for your app (QA, staging, production), each of which can have pre- and post-approvers to help ensure that updates aren’t unintentionally released.&lt;br /&gt;
&lt;br /&gt;
 Marketplace The rich ecosystem of first- and third-party services extensions facilitates further customization of your CI and CD experience.&lt;br /&gt;
&lt;span style="color: #999999;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Managing teams and projects by using VSTS/TFS</title><link>http://computingtech.blogspot.com/2017/12/managing-teams-and-projects-by-using.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Thu, 14 Dec 2017 22:03:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-6508565734780939218</guid><description>With the ability to create an unlimited number of private Git and/or Team Foundation Version Control&lt;br /&gt;
(TFVC) repositories, VSTS and TFS provide the flexibility needed for teams all of sizes, regardless of whether they prefer distributed or centralized version control. Support for branching and pull requests facilitates modern collaboration workflows, and gated builds and code reviews provides enforcement of best practices.&lt;br /&gt;
&lt;br /&gt;
Be agile, on your terms. Capture, prioritize, and track work with backlogs and customizable Kanban&lt;br /&gt;
boards. Work items link directly to code to ensure transparency, and you can use them to build rich&lt;br /&gt;
dashboards for easy reporting.&lt;br /&gt;
&lt;br /&gt;
Here are some of the key benefits:&lt;br /&gt;
 Flexible version control Use Git for distributed version control to maximize collaboration, or&lt;br /&gt;
use TFVC for centralized version control.&lt;br /&gt;
&lt;br /&gt;
 Unlimited private repositories No need to limit your development projects. VSTS/TFS provide&lt;br /&gt;
teams with the ability to create as many Git or TFVC repositories as are needed for any project.&lt;br /&gt;
&lt;br /&gt;
 Modern collaboration workflows Branches isolate risk in a development project. Pull requests&lt;br /&gt;
provide tools that facilitate collaboration and code reviews for changes being merged back into&lt;br /&gt;
the mainline.&lt;br /&gt;
&lt;br /&gt;
 Branch policies Enforce best practices by requiring that all code submissions have code reviews,&lt;br /&gt;
and eliminate build breaks with gated build.&lt;br /&gt;
&lt;br /&gt;
 IDE integration Use your favorite language and development tool. Version control supports any&lt;br /&gt;
language, as well as any Git client (including Xcode). Java teams can access code and work items&lt;br /&gt;
through free plug-ins for Eclipse and IntelliJ and can run continuous integration builds based on&lt;br /&gt;
config files from Ant or Maven.&lt;br /&gt;
&lt;br /&gt;
 Build integration Create and manage build processes that automatically compile and test your&lt;br /&gt;
applications in the cloud, either on demand or as part of an automated continuous integration&lt;br /&gt;
strategy.&lt;br /&gt;
&lt;br /&gt;
 Backlogs Quickly define, prioritize, and decompose the work for your project. Prioritization is&lt;br /&gt;
easy with drag-and-drop reordering, which helps you keep the most important work at the top of&lt;br /&gt;
your backlog.&lt;br /&gt;
&lt;br /&gt;
 Scrum planning Scrum teams will feel right at home. Plan sprints using team-based capacity&lt;br /&gt;
planning, drag work-item assignments where you need them, and monitor progress throughout&lt;br /&gt;
the sprint with real-time burndown charts.&lt;br /&gt;
&lt;br /&gt;
 Task boards Run your sprint using a fit-for-purpose Taskboard, where you can watch the work&lt;br /&gt;
as it happens. Pivot the board by team member or story, making daily standups quick and&lt;br /&gt;
efficient.&lt;br /&gt;
&lt;br /&gt;
 Custom queries Using queries, you can track and organize your data to fit the needs of every&lt;br /&gt;
project and situation. Create custom queries to look for stale work, impediments that are blocking&lt;br /&gt;
progress, or backlog items that need attention.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>DevOps for mobile</title><link>http://computingtech.blogspot.com/2017/12/devops-for-mobile.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Wed, 13 Dec 2017 20:36:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-7802921637657035531</guid><description>Microsoft Visual Studio Team Services, Team Foundation Server, Xamarin Test Cloud, and HockeyApp provide a comprehensive ecosystem for developer and IT operations with which your team can manage projects and rapidly build, test, and deploy mobile apps and back-end services.&lt;br /&gt;
&lt;br /&gt;
With Visual Studio and Visual Studio Team Services (VSTS) in the cloud, along with Team Foundation Server (TFS) on-premises, development teams can productively build, test, and release for all target platforms (iOS, Android, and Windows). Teams can manage their sources (via Git or TFS) and can manage their work through scrum and bug-tracking management.&lt;br /&gt;
&lt;br /&gt;
Microsoft tools can automate the pipeline for iOS, Android, and Windows device apps from global builds with VSTS, to test with Xamarin Test Cloud, to deploy to mobile devices with HockeyApp, and to provide feedback and crash analytics about the app back to the developer. Every code commit can prompt a build and deploy the app to test users. Crash data and user feedback with screenshots are directly collected when running the app and fed back into work items for the next cycle.&lt;br /&gt;
&lt;br /&gt;
The complexity of mobile app development increases steadily with new devices, new form factors,&lt;br /&gt;
and new operating system versions. Android runs on more than 10,000 device models, and even iOS&lt;br /&gt;
developers now need to consider 5 different device types and 10 screen resolutions when developing&lt;br /&gt;
universal apps for iOS, tvOS, and watchOS. To succeed in this environment, your project must&lt;br /&gt;
automate the entire lifecycle—not only build and deployment, but also management of versions and&lt;br /&gt;
test users, along with the collection of feedback and telemetry. In summary, VSTS offers the following capabilities :&lt;br /&gt;
&lt;br /&gt;
 VSTS/TFS source code management (based on Git or Team Foundation Version Control), agile&lt;br /&gt;
planning (Agile, Scrum, and CMMI are supported), continuous integration, release management,&lt;br /&gt;
and other tools for agile teams.&lt;br /&gt;
&lt;br /&gt;
 VSTS/TFS include a powerful and growing ecosystem of first- and third-party extensions with&lt;br /&gt;
which you can easily construct a continuous integration, build, test, delivery, and release&lt;br /&gt;
management pipeline for mobile client apps, (including options to designate your local Mac&lt;br /&gt;
or remote Macs for iOS builds).&lt;br /&gt;
&lt;br /&gt;
 VSTS/TFS builds can stream directly to HockeyApp, which deploys apps to your testers. After your app is installed on a test user’s device, HockeyApp collects usage data, crash reports, and user&lt;br /&gt;
feedback with screenshots and will show an alert when the next build is available. Closing the&lt;br /&gt;
loop, HockeyApp can automatically create work items for a new crash group or feedback thread&lt;br /&gt;
and keep the status in synchronization.&lt;br /&gt;
&lt;br /&gt;
 HockeyApp tightens the DevOps lifecycle with solutions for testing, A/B experimentation, beta&lt;br /&gt;
feedback management, and crash data analytics.&lt;br /&gt;
&lt;br /&gt;
 Azure App Service also supports DevOps for the back end, making it possible for you to configure&lt;br /&gt;
and define slots for development, staging, and production, integrated from VSTS and allowing&lt;br /&gt;
you to configure, deploy, and manage mobile services across those slots, for your mobile apps.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Back-end platform for Internet of Things with Microsoft Azure</title><link>http://computingtech.blogspot.com/2017/12/back-end-platform-for-internet-of.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Tue, 12 Dec 2017 20:35:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-1886970399641178114</guid><description>Azure IoT Suite is an enterprise-grade solution. Developers can get started with it quickly through a&lt;br /&gt;
set of extensible preconfigured solutions that address common Internet of Things (IoT) scenarios such as remote monitoring and predictive maintenance. These are complete, working end-to-end solutions, including simulated devices that make use of Azure services.&lt;br /&gt;
&lt;br /&gt;
With integration of Azure App Service and mobile apps, developers can connect their IoT devices to&lt;br /&gt;
ingest data to Azure, perform operations over that data, and expose the data and other APIs to client&lt;br /&gt;
mobile applications. In particular, the following Azure products are of interest in IoT scenarios:&lt;br /&gt;
&lt;br /&gt;
 Azure IoT Hub Developers can easily and securely connect new devices and existing ones by&lt;br /&gt;
using open-source device SDKs. These SDKs are available for multiple platforms, including Linux&lt;br /&gt;
and Windows, and they make it possible to reliably (intermittent connection) and securely send&lt;br /&gt;
commands and notifications to connected devices and to track message delivery.&lt;br /&gt;
&lt;br /&gt;
 Azure Event Hubs This is a highly scalable publish-subscribe service that can ingest millions of&lt;br /&gt;
events per second and stream them into multiple apps. This lets developers process and analyze&lt;br /&gt;
the data produced by connected devices and apps and to transform and store it by using any&lt;br /&gt;
real-time analytics provider or with batching/storage adapters.&lt;br /&gt;
&lt;br /&gt;
 Azure Stream Analytics Developers can rapidly develop and deploy low-cost solutions to gain&lt;br /&gt;
real-time insights from devices, sensors, infrastructure, and applications, such as real-time remote&lt;br /&gt;
management and monitoring, or gain insights from devices like mobile phones and connected&lt;br /&gt;
cars.&lt;br /&gt;
&lt;br /&gt;
 Azure Machine Learning This powerful cloud-based predictive analytics service makes it&lt;br /&gt;
possible to quickly create and deploy predictive models as analytics solutions. It provides tools to&lt;br /&gt;
model predictive analytics but also provides a fully managed service to deploy predictive models&lt;br /&gt;
as ready-to-consume web services. Azure Machine Learning provides tools for creating complete&lt;br /&gt;
predictive analytics solutions in the cloud: quickly create, test, make operational, and manage&lt;br /&gt;
predictive models.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>On-premises back-end systems via Azure Stack</title><link>http://computingtech.blogspot.com/2017/12/on-premises-back-end-systems-via-azure.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Mon, 11 Dec 2017 20:26:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-2754552230040361926</guid><description>Microsoft Azure Stack is a new hybrid cloud platform product with which your organization can deliver Azure services from your own datacenter to help you achieve more. Get the power of cloud services, yet maintain control of your datacenter for true hybrid cloud agility. You decide where to keep your data and applications—in your own datacenter or with a hosting service provider. You can easily access public cloud resources to scale at busy times of the year, for dev-test, or whenever you need them. Microsoft builds and runs its own hyperscale datacenters and delivers that proven innovation to your datacenter.&lt;br /&gt;
&lt;br /&gt;
Azure Stack extends the Azure vision by bringing the cloud model of computing to every datacenter.&lt;br /&gt;
Azure Stack is a new hybrid cloud platform product that organizations can use to deliver Azure&lt;br /&gt;
services from their own datacenters in a way that is consistent with Azure.&lt;br /&gt;
&lt;br /&gt;
Organizations can create these Azure services from datacenter resources, which means that developers and IT professionals can quickly provision and scale services using the same self-service&lt;br /&gt;
experience they find in Azure. This all adds up to an environment in which application developers can maximize their productivity by using a “write once, deploy to Azure or Azure Stack” approach, because the Azure APIs are consistent, regardless of where the resources are provisioned—Azure Stack is simply an extension of Azure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;On-premises services for mobile apps: Azure Stack App Service&lt;/b&gt;&lt;br /&gt;
The Azure Stack App Service is the Azure App Service brought to on-premises installations. It includes the web, mobile, and API services. Organizations can create content in Azure Stack App Service by using Azure Resource Manager (ARM) templates or from the Marketplace, just as they can in Azure.&lt;br /&gt;
&lt;br /&gt;
With Azure Stack, developers use APIs that are identical to the ones deployed to Azure App Service&lt;br /&gt;
in the cloud. They can create services based on .NET (like ASP.NET Web API) or non-Microsoft&lt;br /&gt;
technologies (like Node.js) that can easily run on-premises or in the public cloud.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Implementing data platform services by using Azure</title><link>http://computingtech.blogspot.com/2017/12/implementing-data-platform-services-by.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Sun, 10 Dec 2017 20:23:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-7091706287675310180</guid><description>Azure is an open ecosystem that offers a large variety of data platforms, including relational SQL&lt;br /&gt;
databases, NoSQL databases, binary large object (BLOB)/files storage, Cache as a Service, and&lt;br /&gt;
analytics and Big Data.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;SQL databases using Azure SQL Database&lt;/b&gt;&lt;br /&gt;
Developers building SaaS applications can use Azure SQL Database to provide flexibility to support&lt;br /&gt;
both explosive growth and profitable business models, based on the ability to scale, have high&lt;br /&gt;
performance, high availability, and the peace of mind that comes with security. Here are some of the&lt;br /&gt;
features that Azure SQL Database offers:&lt;br /&gt;
&lt;br /&gt;
 Elastic database models and tools An elastic database gives developers the ability to pool&lt;br /&gt;
resources to use among a group of databases for scaling, which then can be administratively&lt;br /&gt;
managed by submitting a script as a job. The SQL Database performs the script across the&lt;br /&gt;
databases.&lt;br /&gt;
&lt;br /&gt;
 High performance High-throughput applications can take advantage of the latest version,&lt;br /&gt;
which delivers 25 percent more premium database power.&lt;br /&gt;
&lt;br /&gt;
 Backups, replication, and high availability Built-in replication and a Microsoft-backed SLA at&lt;br /&gt;
the database level provide app continuity and protection against catastrophic events, especially&lt;br /&gt;
when combined with active georeplication, the ability to control when and where to failover, and&lt;br /&gt;
self-service restore, which provides full control over “oops recovery” (data restoration from&lt;br /&gt;
available data backups of up to 35 days).&lt;br /&gt;
&lt;br /&gt;
 Near-zero maintenance Automatic software is part of the service, and built-in system replicas&lt;br /&gt;
help to deliver inherent data protection, database uptime, and system stability. System replicas&lt;br /&gt;
are automatically moved to new computers, which are provisioned on the fly as old ones fail.&lt;br /&gt;
&lt;br /&gt;
 Security Azure SQL Database offers a portfolio of security features to meet organizational or&lt;br /&gt;
industry-mandated compliance policies. Auditing provides developers the ability to perform&lt;br /&gt;
compliance-related tasks and to gain knowledge about activities. Developers and IT can&lt;br /&gt;
implement policies at the database level to help limit access to sensitive data with row-level&lt;br /&gt;
security, dynamic data masking, and transparent data encryption for Azure SQL Database. (SQL Database is verified by key cloud auditors as part of the scope of key Azure compliance&lt;br /&gt;
certifications and approvals, such as HIPAA BAA, ISO/IEC 27001:2005, FedRAMP, and EU Model&lt;br /&gt;
Clauses.)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;NoSQL databases using Azure DocumentDB&lt;/b&gt;&lt;br /&gt;
Azure DocumentDB is a NoSQL document database service designed from the ground up to natively&lt;br /&gt;
support JSON and JavaScript directly inside the database engine. Coding against DocumentDB is&lt;br /&gt;
simple, approachable, and open, and it does not require custom encoding or extensions to JSON or&lt;br /&gt;
JavaScript. With these benefits developers can do the following:&lt;br /&gt;
&lt;br /&gt;
 Build modern, scalable mobile and web applications with a unique combination of robust&lt;br /&gt;
querying and transactional data processing. Developers can extend the power of DocumentDB by&lt;br /&gt;
using JavaScript-based custom query operators or user-defined functions.&lt;br /&gt;
&lt;br /&gt;
 Rapidly develop by accessing databases through CRUD, query, and JavaScript processing over a&lt;br /&gt;
simple RESTful HTTP interface. Developers can use a library of SDKs for JavaScript, Java, Node.js,&lt;br /&gt;
Python, and .NET.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Storage via Azure Storage&lt;/b&gt;&lt;br /&gt;
Azure Storage is the cloud storage solution for modern applications that rely on durability, availability, and scalability to meet the needs of their customers. Azure Storage provides the flexibility and hyperscale needed to store and retrieve large amounts of data so that as storage demands increase (for example, petabytes of storage), developers can take advantage of 500 TB of total storage per account, and a single subscription supports up to 50 storage accounts. Developers can make use of REST-based APIs to access storage.&lt;br /&gt;
&lt;br /&gt;
Azure Storage delivers high-performance, low-latency disk support for I/O-intensive workloads&lt;br /&gt;
running in Azure Virtual Machines. It also is extremely durable and highly available (via replication).&lt;br /&gt;
Here are the services that Azure Storage offers:&lt;br /&gt;
&lt;br /&gt;
 Azure Blob Storage (Object Storage) Store unstructured data such as documents and media&lt;br /&gt;
files&lt;br /&gt;
&lt;br /&gt;
 Azure Table Storage For structured NoSQL data&lt;br /&gt;
&lt;br /&gt;
 Azure Queue Storage For reliable message storage&lt;br /&gt;
&lt;br /&gt;
 SMB-based Azure File Storage For existing or new applications&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Caching by using Azure Redis Cache&lt;/b&gt;&lt;br /&gt;
Azure Redis Cache (based on the open-source Redis cache) gives developers access to a secure,&lt;br /&gt;
dedicated Redis cache, managed by Microsoft and accessible from any application within Azure. This&lt;br /&gt;
makes it possible for applications to become more responsive, even as user load increases, by taking&lt;br /&gt;
advantage of the low-latency, high-throughput capabilities of the Redis engine. Using this separate,&lt;br /&gt;
distributed cache layer, the data tier can scale independently for more efficient use of compute&lt;br /&gt;
resources in applications.&lt;br /&gt;
&lt;br /&gt;
You can easily manage Azure Redis Cache (for example, monitoring its health and performance)&lt;br /&gt;
through the Azure portal.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Building microservices with Azure Service Fabric</title><link>http://computingtech.blogspot.com/2017/12/building-microservices-with-azure.html</link><category>mobile app development</category><author>noreply@blogger.com (Computing Tech)</author><pubDate>Sat, 9 Dec 2017 19:03:00 +0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-8791657492806915033.post-8337493432425381998</guid><description>Microservices offer long-term maintainability in large, complex, and highly scalable systems by&lt;br /&gt;
designing applications based on many independently deployable services that facilitate granular release planning. Some examples of microservices include protocol gateways, user profiles, shopping&lt;br /&gt;
carts, inventory processing, purchase subsystems, payment processing, and queues and caches.&lt;br /&gt;
The microservices architecture is an approach to building a server or cloud application as a set of&lt;br /&gt;
small services. Each microservice runs in its own process and communicates via protocols such as&lt;br /&gt;
HTTP and web sockets. Each one implements specific, end-to-end domain/business capabilities within a certain Bounded Context and is developed autonomously and deployed independently by&lt;br /&gt;
automated mechanisms. Finally, each service owns its related domain data model and domain logic&lt;br /&gt;
sovereignty and decentralized data management and can employ different data storage technologies&lt;br /&gt;
(SQL, NoSQL) and different programming languages per microservice.&lt;br /&gt;
&lt;br /&gt;
Microservices can scale-out independently, as compared to giant monolithic application blocks that all scale together. This means that you can scale just the specific functional area that needs more&lt;br /&gt;
processing power or network bandwidth to support demand, rather than unnecessarily scaling-out&lt;br /&gt;
other areas of the application.&lt;br /&gt;
&lt;br /&gt;
Designing fine-grained microservice applications promotes continuous integration and development&lt;br /&gt;
practices and can accelerate delivery of new functions into the application. Fine-grained decomposition of applications also means running and testing in isolation. As long as you don’t break the contracts or interfaces with other microservices, you can change any microservice implementation under the hood and add new functionality without disrupting the other microservices that depend on it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Azure Service Fabric&lt;/b&gt;&lt;br /&gt;
Distributed computing and complex microservices deployments can be difficult to manage if you do&lt;br /&gt;
them yourself. Azure Service Fabric provides the plumbing required to create, deploy, run, and&lt;br /&gt;
manage microservices in an effective and efficient way.&lt;br /&gt;
&lt;br /&gt;
Azure Service Fabric is a distributed systems platform that you can use to build hyperscalable, reliable, and easily managed applications for the cloud. It addresses the significant challenges in developing and managing cloud applications. This frees developers and administrators from having to solve complex infrastructure problems, letting them focus instead on implementing mission-critical, demanding workloads with the confidence of knowing that these are scalable, reliable, and manageable. Azure Service Fabric represents the next-generation middleware platform from&lt;br /&gt;
Microsoft for building and managing these enterprise-class, Tier-1 cloud-scale services.&lt;br /&gt;
&lt;br /&gt;
Azure Service Fabric is a universal deployment environment, which means that you are able to deploy any executable based on any language (including .NET, Node.js, Java, or C++) or even database runtimes (like MongoDB). Therefore, Azure Service Fabric is not limited to microservices-oriented applications. You can also use it to host and deploy traditional applications (web apps or services) and enjoy many benefits related to scalability, load-balancing, and fast deployment.&lt;br /&gt;
&lt;span style="color: #999999;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="color: #999999;"&gt;Source Of Information : Microsoft Platform and Tools for Mobile App Development&lt;/span&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item></channel></rss>