If I am not wrong gradle assemble does run gradle assembleDebug and gradle assembleRelease, but I believe gradle build al
gradle assemble
gradle assembleDebug
gradle assembleRelease
gradle build
From gradle tasks --all:
gradle tasks --all
Build tasks ----------- assemble - Assembles the outputs of this project. build - Assembles and tests this project.
build is effectively assemble + check (and check is test + any linting tasks).
build
assemble
check
test