What's the difference between buildscript and allprojects in build.gradle?

后端 未结 2 1304
灰色年华
灰色年华 2020-12-12 12:42

On a multi-project gradle build, can someone tell me what exactly is the difference between the \"allprojects\" section and the \"buildscript\" one? Both have a repos

2条回答
  •  爱一瞬间的悲伤
    2020-12-12 13:34

    The "buildscript" configuration section is for gradle itself (i.e. changes to how gradle is able to perform the build). So this section will usually include the Android Gradle plugin.

    The "allprojects" section is for the modules being built by Gradle.

    Oftentimes the repository section is the same for both, since both will get their dependencies from jcenter usually (or maybe maven central). But the "dependencies" section will be different.

    Usually the "dependencies" section for "allprojects" is empty since the dependencies for each module are unique and will be in the "build.gradle" file within each of the modules. However, if all of the modules shared the same dependencies then they could be listed here.

提交回复
热议问题