15

I have several build flavors for an application. I want to build all differently flavored apks at once and find them in my /output folder. I don't want to select each flavor and build it individually. How can I do this?

Tyler Pfaff
  • 4,900
  • 9
  • 47
  • 62

1 Answers1

9

You should run ./gradlew build at the root of your project.

Sandro Machado
  • 9,921
  • 4
  • 36
  • 57