From c17a3891242bcb468c440ecfe664ed045b83e4d6 Mon Sep 17 00:00:00 2001 From: James Newman Date: Wed, 27 May 2026 15:50:25 -0400 Subject: [PATCH] fix: pin mparticle deps upper bound in higgs-shop sample MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The open-ended `5+` selector can resolve to the highest available version on Maven Central — including `6.0.0-rc.1` (published 2026-05-22) which removed deprecated symbols. See mParticle/mparticle-android-sdk#710 for the broader incident. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../higgs-shop-sample-app/app/build.gradle.kts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/core-sdk-samples/higgs-shop-sample-app/app/build.gradle.kts b/core-sdk-samples/higgs-shop-sample-app/app/build.gradle.kts index 830cae9..fb3680f 100644 --- a/core-sdk-samples/higgs-shop-sample-app/app/build.gradle.kts +++ b/core-sdk-samples/higgs-shop-sample-app/app/build.gradle.kts @@ -104,10 +104,11 @@ dependencies { implementation(libs.com.squareup.retrofit) implementation(libs.com.squareup.retrofit.converter.gson) - // mParticle - implementation("com.mparticle:android-core:5+") - implementation("com.mparticle:android-kit-base:5+") - implementation("com.mparticle:android-rokt-kit:5+") + // mParticle — bounded upper bound prevents resolving to 6.0.0-rc.1+ on + // Maven Central, which removed deprecated symbols. See mparticle-android-sdk#710. + implementation("com.mparticle:android-core:[5.0,6.0)") + implementation("com.mparticle:android-kit-base:[5.0,6.0)") + implementation("com.mparticle:android-rokt-kit:[5.0,6.0)") // Google Services implementation(libs.play.services.ads.identifier)