Book Image

Lean Mobile App Development

By : Mike van Drongelen, Aravind Krishnaswamy
Book Image

Lean Mobile App Development

By: Mike van Drongelen, Aravind Krishnaswamy

Overview of this book

Lean is the ultimate methodology for creating a startup that succeeds. Sounds great from a theoretical point of view, but what does that mean for you as an a technical co-founder or mobile developer? By applying the Lean Start-up methodology to your mobile App development, it will become so much easier to build apps that take Google Play or the App Store by storm. This book shows you how to bring together smarter business processes with technical know-how. It makes no sense to develop a brilliant app for six months or longer only to find out later that nobody is interested in it. Build a Minimum Viable Product (MVP) first. Validate your hypotheses early and often. Discover effective product development strategies that let you put Facebook's famous axiom "move fast and break things" into practice. A great app without visibility and marketing clout is nothing, so use this book to market your app, making use of effective metrics that help you track and iterate all aspects of project performance.
Table of Contents (22 chapters)

An example of a continuous workflow for an Android app

A picture of the ad hoc distribution of an Android app could look as follows. For Continuous Integration, in the picture shown next, TeamCity is used to retrieve the app source code from a repository, created at Bitbucket:

In the preceding diagram, we used TeamCity to instruct Gradle to build and sign the app and create a Sonar report to measure the quality of the code. Also, we ran unit tests and ran UI tests (using Espresso). Once configured, TeamCity will take care of all these steps. If they all succeed, then another step will upload the signed app (APK file) to HockeyApp, which, in turn, notifies users about a new version being available. If you prefer you can also use Jenkins as a build server, or use Fabric Beta instead of HockeyApp. We will discuss the highlights of CI/CD only. There are some interesting books available...