要跳过我可以编写的任务
./gradlew assembleDebug -x countDebugDexMethods
我是否可以将此选项添加到配置文件中,即gradle.properties
gradle.properties
发布于 2018-03-06 13:03:47
只需禁用build.gradle中的任务即可
build.gradle
countDebugDexMethods.enabled = false
https://stackoverflow.com/questions/49131280
相似问题