Skip to content

Conversation

@ximsfei
Copy link

@ximsfei ximsfei commented May 6, 2018

for (int index = 0; index < taskNames.size(); ++index) {
    def taskName = taskNames[index]
    logger.debug "input start parameter task is ${taskName}"
    //FIXME: assembleRelease下屏蔽Prepare,这里因为还没有执行Task,没法直接通过当前的BuildType来判断,所以直接分析当前的startParameter中的taskname,
    //另外这里有一个小坑task的名字不能是缩写必须是全称 例如assembleDebug不能是任何形式的缩写输入
    if (taskName.endsWith("Debug") && taskName.contains("Debug")) {
        isDebugTask = true
        break;
    }
}

Fixed: 不再需要通过taskName来判断buildType是否为debug了。

例如: assembleDebug不能是任何形式的缩写输入
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

2 participants