Android assembleDebug任务如何以及为什么从;“建立”;至;“其他任务”;在安卓工作室

Android assembleDebug任务如何以及为什么从;“建立”;至;“其他任务”;在安卓工作室,android,android-studio,gradle,Android,Android Studio,Gradle,通常在Android studio的build下,我们有assembleedbug和assembleerelease。直到最近,我的项目还是这样。突然assembleDebug和assembleRelase从build中消失,现在可以在其他任务中找到(参见图片) 从命令行运行gradlew时显示相同的结果,即: Build tasks ----------- assemble - Assemble main outputs for all the variants. assembleAndro

通常在Android studio的
build
下,我们有
assembleedbug
assembleerelease
。直到最近,我的项目还是这样。突然
assembleDebug
assembleRelase
build
中消失,现在可以在
其他任务中找到(参见图片)

从命令行运行
gradlew
时显示相同的结果,即:

Build tasks
-----------
assemble - Assemble main outputs for all the variants.
assembleAndroidTest - Assembles all the Test applications.
build - Assembles and tests this project.
buildDependents - Assembles and tests this project and all projects that depend on it.
buildNeeded - Assembles and tests this project and all projects it depends on.
bundle - Assemble bundles for all the variants.
classes - Assembles main classes.
clean - Deletes the build directory.
cleanBuildCache - Deletes the build cache directory.
compileDebugAndroidTestSources
compileDebugSources
compileDebugUnitTestSources
compileReleaseSources
compileReleaseUnitTestSources
extractDebugAnnotations - Extracts Android annotations for the debug variant into the archive file
extractReleaseAnnotations - Extracts Android annotations for the release variant into the archive file
jar - Assembles a jar archive containing the main classes.
testClasses - Assembles test classes.
我不认为我的gradle档案有什么不寻常的地方。是否有人知道可能发生了什么,以及为什么
assembleDebug
不显示在
build
中,而是显示在
其他任务中