Reputation: 5032
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?
Upvotes: 15
Views: 5176
Reputation: 10215
You should run ./gradlew build
at the root of your project.
Upvotes: 9