Ever wonder what it takes to fully modularize a large application and begin working on instant apps? Wonder no more, in this talk we review how we tackled the problem of modularization, and package separation within the large Groupon Android App.
interface public interface Recipe_Ingredients { // methods needed by new module boolean isGlutenFree(); } In Main Module public class Ingredients { boolean isGlutenFree() { // code that implements the method } } : implement the interface implements Recipe_Ingredients { @Override