Skip to content

Commit 1e15fe9

Browse files
jamesnroktclaude
andauthored
fix: pin android-core upper bound to prevent 6.0.0-rc.1 pull (#77)
The open-ended `[5.11.3, )` range resolves to the highest available version on Maven Central — now `6.0.0-rc.1` (published 2026-05-22). 6.x removed deprecated symbols this module depends on. See mParticle/mparticle-android-sdk#710 for the broader incident. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 917c715 commit 1e15fe9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

media/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ repositories {
2626

2727
dependencies {
2828
implementation("org.jetbrains.kotlin:kotlin-stdlib-common")
29-
implementation("com.mparticle:android-core:[5.11.3,)")
29+
// Bounded upper bound prevents resolving to 6.0.0-rc.1+ on Maven Central.
30+
// See mparticle-android-sdk#710 for context.
31+
implementation("com.mparticle:android-core:[5.11.3,6.0)")
3032

3133
testImplementation(files("libs/test-utils.aar"))
3234
testImplementation(files("libs/java-json.jar"))

0 commit comments

Comments
 (0)