I have a library project and a application. I\'d like to have 2 product flavours (store, dev) for both library and application. When I build the store<
To define specific dependency for each flavor you can use "nameOfTheFlavorCompile" instead of "compile"
dependencies { storeCompile project(':lib') }