Is `gradle build` the right task to build all targ...
# multiplatform
d
Is
gradle build
the right task to build all targets in ci?
j
It's pretty good, yes. The only thing it misses is building instrumented test APKs for Android targets
For that you have to add
assembleAndroidTest
as well
d
Allright
j
Of course if you're running
connectedTest
to run the instrumented tests they'll obviously also get built, but it can help to assemble the instrumented test APKs earlier in CI before starting an emulator
d
Android is not the priority now, so