From 2125e89dc6a53ddfdede369876c5f5610038514b Mon Sep 17 00:00:00 2001 From: scottolcott Date: Wed, 22 Apr 2026 11:48:55 -0600 Subject: [PATCH] Ignore Android Gradle Plugin markers in Renovate configuration - Disable lookups for `com.android.application`, `com.android.library`, and `com.android.kotlin.multiplatform.library` plugin artifacts. - Prevent redundant updates by relying on the main library entries instead of marker plugins. --- renovate.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/renovate.json b/renovate.json index 5be969d..8917d8f 100644 --- a/renovate.json +++ b/renovate.json @@ -17,6 +17,15 @@ "matchPackageNames": [ "/^org.jetbrains.compose/" ] + }, + { + "description": "Ignore Android Gradle Plugin marker lookups as they are handled by the library entry", + "matchPackageNames": [ + "com.android.application:com.android.application.gradle.plugin", + "com.android.library:com.android.library.gradle.plugin", + "com.android.kotlin.multiplatform.library:com.android.kotlin.multiplatform.library.gradle.plugin" + ], + "enabled": false } ] }