James
James

Reputation: 2834

Gradle assemble specific flavor and build

Running ./gradlew tasks shows options to assemble all builds for a particular flavor, or all flavors for a particular build. Does there exist an option to assemble for a specific flavor and build combination?

Upvotes: 14

Views: 9276

Answers (1)

Sam Dozor
Sam Dozor

Reputation: 40764

Yes - you're referring to a specific build variant

./gradlew assembleFlavoraBuildb

Where your flavor is called flavora and your build is buildb

Read more here: http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Building-and-Tasks

Upvotes: 29

Related Questions