-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for jetpack compiler kotlinCompilerExtensionVersion
#18354
Comments
It's possible to integrate updates for What won't work is to make renovate aware what |
This comment was marked as off-topic.
This comment was marked as off-topic.
@ede-wolf-gls Please ask at a new discussion |
Really interested in this |
Is renovate updates the unused dependencies too ? What about if we define below in TOML file
Will Renovate update |
Luckily, new version of composeCompiler is released yesterday and I had chance to test the workaround above, and it is working 🎉 @igorwojda you can use as workaound, you do not need to |
Yes, @Churro can you elaborate on these packageRules? Perhaps drop rules that would work for this scenario? |
I currently have this in my package rules in order to update kotlin related libraries together: "packageRules": [
{
"matchPackagePatterns": [
"^org.jetbrains.kotlin",
"^com.google.devtools.ksp",
"^androidx.compose.compiler"
],
"groupName": "kotlin"
}
] |
What would you like Renovate to be able to do?
Unlike any other dependency, the Android Jetpack compose compiler dependency is upgraded by setting
kotlinCompilerExtensionVersion
property in the Gradle file:module\build.gradle
file :More: https://developer.android.com/jetpack/androidx/releases/compose-kotlin
If you have any ideas on how this should be implemented, please tell us here.
Upgrade the value of the
kotlinCompilerExtensionVersion
property in allmodule\build.gradle
files.Keep in mind that
kotlinCompilerExtensionVersion
propertyty value can be retrieved directly from Gradlelibs.versions.toml
file:BTW
Android Jetpack compiler version is tightly coupled with the Kotlin version, so they have to be upgraded together. See kotlin compatibility https://developer.android.com/jetpack/androidx/releases/compose-kotlin#pre-release_kotlin_compatibility
Is this a feature you are interested in implementing yourself?
No
The text was updated successfully, but these errors were encountered: