We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 373dae2 commit cde1607Copy full SHA for cde1607
build.gradle.kts
@@ -30,7 +30,13 @@ buildscript {
30
31
}
32
33
-// Lists all plugins used throughout the project
+/*
34
+ * By listing all the plugins used throughout all subprojects in the root project build script, it
35
+ * ensures that the build script classpath remains the same for all projects. This avoids potential
36
+ * problems with mismatching versions of transitive plugin dependencies. A subproject that applies
37
+ * an unlisted plugin will have that plugin and its dependencies _appended_ to the classpath, not
38
+ * replacing pre-existing dependencies.
39
+ */
40
plugins {
41
alias(libs.plugins.android.application) apply false
42
alias(libs.plugins.android.library) apply false
0 commit comments