Android Studio 2.3.3在Clean和Rebuild之间没有区别,那么为什么在Build菜单中有这两个选项呢?

时间:2017-11-08 01:54:49

标签: android android-studio build android-gradle

为什么{2.3}中CleanRebuild相同?为什么在Build菜单中找到了两个选项?

正如here所述,Build>之间的AS 2.3.3中存在无差异 CleanBuild> Rebuild。只需检查Event Log即可验证。

那么为什么不修改AS 2.3.3 Build菜单以获得一个选项,例如Clean and Rebuild。这是一个有趣的历史记录,Clean曾经做过与Rebuild不同的事情,所以这可能证明在菜单中同时存在两种情况,但这是令人困惑的。

请注意,(supposedly)在Visual Studio中,CleanRebuild选项会执行不同的操作,这无疑与AS在1.0中的操作非常相似。

P.S。 thisthis指出Gradle 4.1并不总是以“预期”顺序解释命令。这是否解释了为什么CleanRebuild 必须相同?

2 个答案:

答案 0 :(得分:2)

我在编码过程中使用clean来更新R值。我不想知道我未完成的代码中有错误,我只想让R文件链接成为最新的。

另一方面,Rebuild列出了所有错误。

所以在幕后它们可能是相同的,但结果以不同的方式呈现给用户。

答案 1 :(得分:2)

@Sam是对的。仅仅看Event log是非常肤浅的 仅记录事件,而不是详细信息。查看Gradle console澄清了一切:

这里有Clean,即使代码中有错误我编译:

Executing tasks: 
[clean, :app:generateDebugSources, :app:mockableAndroidJar,
        :app:prepareDebugUnitTestDependencies,             
        :app:generateDebugAndroidTestSources,
        :app:compileDebugSources, :app:compileDebugUnitTestSources,
        :app:compileDebugAndroidTestSources]

Configuration on demand is an incubating feature.

Incremental java compilation is an incubating feature.
:clean
:app:clean
:app:    preBuild UP-TO-DATE
(MY NOTE ^^^^^^^^
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportAnimatedVectorDrawable2600Alpha1Library
:app:prepareComAndroidSupportAppcompatV72600Alpha1Library
:app:prepareComAndroidSupportConstraintConstraintLayout102Library
:app:prepareComAndroidSupportSupportCompat2600Alpha1Library
:app:prepareComAndroidSupportSupportCoreUi2600Alpha1Library
:app:prepareComAndroidSupportSupportCoreUtils2600Alpha1Library
:app:prepareComAndroidSupportSupportFragment2600Alpha1Library
:app:prepareComAndroidSupportSupportMediaCompat2600Alpha1Library
:app:prepareComAndroidSupportSupportV42600Alpha1Library
:app:prepareComAndroidSupportSupportVectorDrawable2600Alpha1Library
:app:prepareDebugDependencies
:app:compileDebugAidl
:app:compileDebugRenderscript
:app:generateDebugBuildConfig
:app:generateDebugResValues
:app:generateDebugResources
:app:mergeDebugResources
:app:processDebugManifest
:app:processDebugResources
:app:generateDebugSources
:app:mockableAndroidJar
:app:preDebugUnitTestBuild UP-TO-DATE
:app:prepareDebugUnitTestDependencies
:app:preDebugAndroidTestBuild UP-TO-DATE
:app:prepareComAndroidSupportTestEspressoEspressoCore222Library
:app:prepareComAndroidSupportTestEspressoEspressoIdlingResource222Library
:app:prepareComAndroidSupportTestExposedInstrumentationApiPublish05Library
:app:prepareComAndroidSupportTestRules05Library
:app:prepareComAndroidSupportTestRunner05Library
:app:prepareDebugAndroidTestDependencies
:app:compileDebugAndroidTestAidl
:app:processDebugAndroidTestManifest
:app:compileDebugAndroidTestRenderscript
:app:generateDebugAndroidTestBuildConfig
:app:generateDebugAndroidTestResValues
:app:generateDebugAndroidTestResources
:app:mergeDebugAndroidTestResources
:app:processDebugAndroidTestResources
:app:generateDebugAndroidTestSources

Rebuild完成以下所有操作 IF 代码中出现错误:

:app:incrementalDebugJavaCompilationSafeguard
:app:javaPreCompileDebug
:app:compileDebugJavaWithJavac
:app:compileDebugJavaWithJavac - is not incremental (e.g. outputs have changed, no previous execution, etc.).

C:\Users\Dov\Desktop\SQhell\app\src\main\java\com\dslomer64\sqhell\MainActivity.java:221: error: not a statement
x       return true;
^
C:\Users\Dov\Desktop\SQhell\app\src\main\java\com\dslomer64\sqhell\MainActivity.java:221: error: ';' expected
x       return true;
 ^
2 errors

:app:compileDebugJavaWithJavac FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 16.398 secs

如果代码中没有错误,Rebuild执行此操作:

:app:compileDebugNdk UP-TO-DATE
:app:compileDebugSources
:app:incrementalDebugUnitTestJavaCompilationSafeguard UP-TO-DATE
:app:javaPreCompileDebugUnitTest
:app:compileDebugUnitTestJavaWithJavac UP-TO-DATE
:app:processDebugJavaRes UP-TO-DATE
:app:processDebugUnitTestJavaRes UP-TO-DATE
:app:compileDebugUnitTestSources UP-TO-DATE
:app:incrementalDebugAndroidTestJavaCompilationSafeguard
:app:javaPreCompileDebugAndroidTest
:app:compileDebugAndroidTestJavaWithJavac
:app:compileDebugAndroidTestNdk UP-TO-DATE
:app:compileDebugAndroidTestSources

BUILD SUCCESSFUL

Total time: 26.83 secs

无论如何,Build执行Clean然后编译代码,如果发现错误(并列出)则终止;否则,做一个完整的编译。

所以CleanRebuild不同。

(这意味着其他一些帖子,如问题中列出的帖子,必须进行修改。)