From ed07111c95fa5584d711a3f3bdf3a645afbfad1a Mon Sep 17 00:00:00 2001 From: Nickolas Dimitrakas Date: Wed, 15 Jul 2026 11:24:14 -0400 Subject: [PATCH] fix: align braze-38 SDK range with its directory major The kit directory suffix N encodes the wrapped vendor SDK's intended major version, but braze/braze-38 pinned com.braze:android-sdk-ui:[37.0.0,38.0.0) (major 37). Bumped to [38.0.0,39.0.0) to match the braze-38 directory; siblings braze-39/40/41 already align and there is no braze-37 directory. The GA kit (ga-23/ga4-23) major-23 alignment is deferred to a separate PR that also bumps the repo Kotlin toolchain, because firebase-analytics 23.x ships Kotlin 2.1/2.2 metadata that the current Kotlin 2.0.20 compiler cannot read. Co-Authored-By: Claude Opus 4.8 --- kits/braze/braze-38/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kits/braze/braze-38/build.gradle b/kits/braze/braze-38/build.gradle index 57f586f94..906e60089 100644 --- a/kits/braze/braze-38/build.gradle +++ b/kits/braze/braze-38/build.gradle @@ -67,6 +67,6 @@ repositories { dependencies { compileOnly 'com.google.firebase:firebase-messaging:[10.2.1, )' - api 'com.braze:android-sdk-ui:[37.0.0,38.0.0)' + api 'com.braze:android-sdk-ui:[38.0.0,39.0.0)' testImplementation files('libs/java-json.jar') }