Let us take a case where you have an app on production. The app uses some framework and a new version with major architecture changes in the framework is released. Do you upgrade?? Or continue with the old framework version. This problem becomes even more complex if, The product is in early stages, which essentially means there … Continue reading Ionic 1 Vs. Ionic 2: Which One Do You Want To Upgrade?
blog
ProTips: How To Sync Your Google Calendar One-way (Google -> Application)
Create multiple flavors of an Android app using gradle script
Product Flavor is a very powerful feature available in the Android gradle plugin that allows us to manage different “flavors” of an application.
In this blog, we are going to learn, how to design and build a single application with multiple flavors, which can be pushed to the Play Store and deployed on the same device simultaneously.
I’ve been asked sometimes on how to work with different hosts, different icons, or even different package names, deppending on different versions of the same app.
There are lot of reasons to do this and one easy way to go: Product Flavors.
Product Flavor is a very powerful feature available in the Android gradle plugin that allows us to manage different “flavors” of an application.
In this blog, we are going to learn, how to design and build a single application with multiple flavors, which can be pushed to the Play Store and deployed on the same device simultaneously.
You can use the productFlavors closure of your app/build.gradle file to define different variants of your product.
In addition to flavors, there is another very important concept regarding building android apps, called “build types”.
Once the changes have been made on app/build.gradle file, a yellow warning bar will appear across the…
View original post 403 more words
