Tyler Pfaff
Tyler Pfaff

Reputation: 5032

Can I build all my gradle build flavors at once?

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

Answers (1)

Sandro Machado
Sandro Machado

Reputation: 10215

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

Upvotes: 9

Related Questions