Opening up Xcode, Android Studio, Visual Studio, Atom or
whatever integrated development environment we use and starting coding away is
always easy enough. Sure, we can create an application, go through
the process of manually signing it and get an app in the store. This is OK if we
are working alone but at some point, many of us are going to be in a situation
of working on a team or have a complex enough application where more formal
testing and deployment is required. Then we start putting together disparate tools to do mobile
DevOps, deploy test versions of the app, handle crash reporting, analytics,
etc. Getting all this to work together can be difficult, particularly the
build servers for automated builds which can be time consuming to
setup and maintain for groups that don't have a lot of experience in that space.
This is the space where Microsoft's App Center really
shines. For small teams, who may be new to mobile, they need to know very little
about setting up these processes to use App Center. One of the strengths of this is that it falls under
Microsoft's new philosophy of embracing technologies outside of their stack, so it isn't just for .Net folks. If
you work in Xcode on Swift, no problem, Java in Android, no problem, React
Native, no problem. App Center takes a variety of infrastructure needs common
to most mobile apps and presents it as a all in one solution where all the parts
are easy to use, work well together or can just be taken a-la-carte.
To see how many different capabilities Microsoft has provided
on a variety of platforms consider the following:
Feature
|
Xamarin iOS and Android
|
Native Android
|
Native iOS
|
UWP
|
React Native
iOS and Android
|
Cordova
iOS and Android
|
MacOS
|
Build
|
|||||||
Test
|
|||||||
Distribute
|
|||||||
Crash Reporting
|
|||||||
Analytics
|
|||||||
Push Notifications
|
|||||||
Code Push
|
Microsoft has gone to great lengths to make most of the features work with many different mobile development platforms. I don't have space to get into how these features work here, but if you want more information you can watch my AppCenter class on Lynda.com or Linked-In Leaning:
Here's how I think about the good, bad and ugly parts of App Center
The Good
- We get continuous integration and continuous deployment setup quickly without needing to know a lot about how to do it
- There is a lot of extendability and capability to tie in other process tools with API and REST interfaces
- It has reasonable pricing for the features that are not outright free
- If you are you blue about managing all the devices in your Ad-Hoc provisioning profiles, AppCenter can make this easy
- Do you only have a few devices to test on? AppCenter has thousands
- This even offers an entire framework for live code pushing React Native and Cordova Javascript code
- Crash reporting and analytics can be set up easily on all supported development platforms
- There just is a lot in this box to like. With AppCenter and a public git style repository of the right type there really is no reason not to have at least a basic CI process
The Bad
- There are limitations around customization of build process (there are three places where custom scripts can be inserted)
- No tie in for builds to kick off custom automated testing (must use scripts and API/REST interface)
- Appium tests can only be written in Java
- The testing feature does not allow for manual testing, there is no direct interaction with the devices for exploratory testing
- There are some other limitations
- Android React Native build only looks two directory levels deep in the repository for workspaces
- Deployment feature still not as full featured as Hockey App
- Features like iOS store deployment that require access to the Apple store account need two factor authentication to be turned off
The Ugly
- To use the build services, it only has Git integration, if you use another source control tool, too bad. You also better be on VSTS, BitBucket or GitHub
- On that note, repositories cannot be on-premise either
- Builds cannot easily be tied into a gated check-in concept
- The REST / API to create builds is fire and forget so it is hard to kick off an AppCenter build from another tool and know when the build is done to know if it failed.