Skip to content

Commit 51bcc97

Browse files
jamesnroktclaude
andcommitted
chore: pin mparticle dependency to [5.0,6.0) range
Replace open-ended `+` resolution in the standalone build with a bounded range so the kit doesn't pick up `com.mparticle:android-kit-plugin:6.0.0-rc.1` (published to Maven Central on 2026-05-22) when built outside the mparticle-android-sdk monorepo. The mparticle-android-sdk CI now passes `-Pversion=<sdk-version>` explicitly, so this range only kicks in for ad-hoc/external standalone builds. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent ff28ccd commit 51bcc97

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
buildscript {
22
ext.kotlin_version = '2.0.20'
33
if (!project.hasProperty('version') || project.version.equals('unspecified')) {
4-
project.version = '+'
4+
// Bounded range avoids resolving to 6.0.0-rc.1+ on Maven Central when
5+
// built standalone. The mparticle-android-sdk CI passes -Pversion explicitly.
6+
project.version = '[5.0,6.0)'
57
}
68

79
repositories {

0 commit comments

Comments
 (0)