Skip to content

Commit 121f45a

Browse files
jamesnroktclaude
andauthored
fix: pin android-core upper bound to prevent 6.0.0-rc.1 pull (#710) (#329)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 015209b commit 121f45a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

android/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,9 @@ dependencies {
118118
//
119119
// (See https://github.com/mparticle/mparticle-android-sdk for the latest version)
120120
//
121-
api 'com.mparticle:android-core:[5.79.0, )'
121+
// Bounded upper bound prevents resolving to 6.0.0-rc.1+ on Maven Central.
122+
// 6.x removed deprecated symbols (e.g. UserAttributeListener); see #710.
123+
api 'com.mparticle:android-core:[5.79.0, 6.0)'
122124

123125
//
124126
// And, if you want to include kits, you can do so as follows:

0 commit comments

Comments
 (0)