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)

Building variants

It is not unlikely that you will need to deliver more than one version of your app. In fact, it could be a smart thing to deliver your app under multiple names, each with a different look and feel. It is great for targeting more than one audience. Another example is that of delivering a light and paid (or free and pro) version of an app. Although a flavor often is used to customize the look and feel, there is no reason why you could not use it for enabling or disabling features.

In addition to a particular flavor, you might need to create build types with different configurations. Think of an app that is communicating against a backend. You probably want to test your app with a different endpoint than the one you use for your app in production. This allows you to safely test your app without the need to worry that it will mess up your production data:

The build...