admin管理员组文章数量:1345891
I have a multi-module android project (with different module types: libraries, apps, and plain java). In the root gradle script, I have included the android application and android library plugins in my classpath (with an "apply:false" suffix) as I need them (e.g. they are used by ktlint
and other plugins). Now, I have an app module that needs Kotlin 2.1.0, while the rest of the project needs and uses Kotlin 1.9.20. If I apply the Kotlin plugin 2.1.0 in the module's build script (in its plugins
block), I get an error that the plugin cannot be resolved because it's already on the classpath with a different version (1.9.20):
Error resolving plugin [id: '.jetbrains.kotlin.android', version: '2.1.0']
> The request for this plugin could not be satisfied because the plugin is already on the classpath with a different version (1.9.20).
Is there a way to get this working (without detaching the module from the project/repository)?
I have this settings.gradle.kts
in my project's root:
pluginManagement {
repositories {
mavenLocal()
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenLocal()
google()
mavenCentral()
}
}
rootProject.name = "my-project"
include(":sdk")
include(":api")
include(":apps:test")
include(":shared")
// rest of the modules and script
And this build.gradle.kts (in root):
import .jlleitschuh.gradle.ktlint.KtlintExtension
import .jlleitschuh.gradle.ktlint.reporter.ReporterType
plugins {
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.jvm) apply false
alias(libs.plugins.kotlin.serialization) apply false
alias(libs.plugins.kotlin.parcelize) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.dynamic.feature) apply false
alias(libs.plugins.test.android.junit5) apply false
alias(libs.plugins.apiChecker) apply false
alias(libs.plugins.detekt)
alias(libs.plugins.ktlint)
alias(libs.plugins.jacoco)
}
apply(from = "jacoco.gradle.kts")
jacoco {
toolVersion = libs.versions.jacoco.get()
}
detekt {
// detekt config
}
Here is the app module's build script:
plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android.v2)
alias(libs.plugins.kotlin.serialization)
alias(libs.plugins.kotlin.parcelize)
}
Relevant part of my version catalog:
kotlin = "1.9.20"
kotlin-v2 = "2.1.0"
[plugins]
kotlin-android = { id = ".jetbrains.kotlin.android", version.ref = "kotlin" }
kotlin-android = { id = ".jetbrains.kotlin.android", version.ref = "kotlin-v2" }
I have a multi-module android project (with different module types: libraries, apps, and plain java). In the root gradle script, I have included the android application and android library plugins in my classpath (with an "apply:false" suffix) as I need them (e.g. they are used by ktlint
and other plugins). Now, I have an app module that needs Kotlin 2.1.0, while the rest of the project needs and uses Kotlin 1.9.20. If I apply the Kotlin plugin 2.1.0 in the module's build script (in its plugins
block), I get an error that the plugin cannot be resolved because it's already on the classpath with a different version (1.9.20):
Error resolving plugin [id: '.jetbrains.kotlin.android', version: '2.1.0']
> The request for this plugin could not be satisfied because the plugin is already on the classpath with a different version (1.9.20).
Is there a way to get this working (without detaching the module from the project/repository)?
I have this settings.gradle.kts
in my project's root:
pluginManagement {
repositories {
mavenLocal()
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenLocal()
google()
mavenCentral()
}
}
rootProject.name = "my-project"
include(":sdk")
include(":api")
include(":apps:test")
include(":shared")
// rest of the modules and script
And this build.gradle.kts (in root):
import .jlleitschuh.gradle.ktlint.KtlintExtension
import .jlleitschuh.gradle.ktlint.reporter.ReporterType
plugins {
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.jvm) apply false
alias(libs.plugins.kotlin.serialization) apply false
alias(libs.plugins.kotlin.parcelize) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.dynamic.feature) apply false
alias(libs.plugins.test.android.junit5) apply false
alias(libs.plugins.apiChecker) apply false
alias(libs.plugins.detekt)
alias(libs.plugins.ktlint)
alias(libs.plugins.jacoco)
}
apply(from = "jacoco.gradle.kts")
jacoco {
toolVersion = libs.versions.jacoco.get()
}
detekt {
// detekt config
}
Here is the app module's build script:
plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android.v2)
alias(libs.plugins.kotlin.serialization)
alias(libs.plugins.kotlin.parcelize)
}
Relevant part of my version catalog:
kotlin = "1.9.20"
kotlin-v2 = "2.1.0"
[plugins]
kotlin-android = { id = ".jetbrains.kotlin.android", version.ref = "kotlin" }
kotlin-android = { id = ".jetbrains.kotlin.android", version.ref = "kotlin-v2" }
Share
Improve this question
edited 2 days ago
Javad
asked 2 days ago
JavadJavad
6,0364 gold badges44 silver badges52 bronze badges
1 Answer
Reset to default 0When you apply false
the Kotlin plugin for a given version in the root build.gradle.kts
, you are adding the code for that version to the classpath of all the builds.
If you want to use different Kotlin plugin versions in different subprojects then you cannot use this approach as it would clash with the different Kotlin plugin version you are using. Therefore you must not apply false
the Kotlin plugin in the root build.gradle.kts
.
Instead, you can apply the Kotlin for the specific version needed in each subproject. I recommend doing this via convention plugins that will help you keep as much configuration in a central location as possible.
本文标签: androidUse different versions of Kotlin in a single projectStack Overflow
版权声明:本文标题:android - Use different versions of Kotlin in a single project - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743818645a2544385.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论