Attach method counting tasks to check rather than assemble stage

This commit is contained in:
Ilya Gorbunov
2017-10-11 19:09:36 +03:00
parent 2d9c4246bd
commit 03dcae5010
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ task dexMethodCount(type: DexMethodCount) {
from jar from jar
ownPackages = ['kotlin'] ownPackages = ['kotlin']
} }
assemble.dependsOn(dexMethodCount) check.dependsOn(dexMethodCount)
compileBuiltinsKotlin { compileBuiltinsKotlin {
dependsOn ":core:builtins:serialize" dependsOn ":core:builtins:serialize"
+1 -1
View File
@@ -175,7 +175,7 @@ task dexMethodCount(type: DexMethodCount) {
jarFile = artifactJar.file jarFile = artifactJar.file
ownPackages = ['kotlin.reflect'] ownPackages = ['kotlin.reflect']
} }
assemble.dependsOn(dexMethodCount) check.dependsOn(dexMethodCount)
artifacts { artifacts {
mainJar artifactJar mainJar artifactJar