docs(android): add 7.1.1 release notes - #19
Merged
Conversation
Covers what actually shipped in 7.1.1 (verified against the release branch): the kotlin-stdlib dependency fix and the WebView bridge control-channel authentication. The WebView obscuring fix on master is not in the release, so it is not documented here. Frames the dependency change as the completion of what 7.1.0 started: that release removed the Kotlin standard library from the OkHttp and Cronet POMs, but Gradle prefers Gradle Module Metadata over the POM, so consumers kept resolving it anyway. Includes the upgrade note for builds that were relying on Bugsee to supply kotlin-stdlib or org.jetbrains:annotations transitively. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Change-Id: If08a68cd34e5d829b4e505d29031be6eaf5ffddf
Drop the mechanism (POM versus Gradle Module Metadata, artifact relocation) and describe the effect on a consumer's build instead. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Change-Id: I608210d0d73f446ef370dcc1bcdac606835abd23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release notes for Android SDK 7.1.1.
Scope verified against the release branch rather than
master—origin/releaseis at59200e872(v7.1.1) and contains exactly:7bd436204+88ec75ec9— WebView control tokenae728e714— kotlin-stdlib dependency fixThe WebView obscuring fix (
dfabc7fb8) is onmasterbut not in the release, so it is deliberately left out.The dependency change
7.1.0's notes already say the OkHttp and Cronet extensions "no longer pull the Kotlin standard library". That was true of the published POM — but Gradle reads Gradle Module Metadata in preference to the POM, and the strip only edited the POM. Every consumer of
bugsee-androidtherefore kept resolvingkotlin-stdlib:2.1.0, pure-Java apps included.The 7.1.1 entry frames it as completing that work, and calls out the upgrade consequence: builds that relied on Bugsee to supply the Kotlin standard library or
org.jetbrains:annotationstransitively now need to declare them.It also notes the memory-leak extension, which is written in Kotlin yet publishes no Kotlin dependency — it carries the part of the runtime it uses inside its own artifact, relocated so it cannot collide with the consumer's copy.
Validation
npx cspell "docs/**/*.md" "docs/**/*.mdx" --no-cache -c cspell.json— 0 issues (avoidedstdlib, which is not in the dictionary and which the surrounding docs spell out anyway).npm run build— exit 0, zero broken links.Note #18 (Gradle plugin 4.0.5) is still open; these two touch different files and do not conflict.
🤖 Generated with Claude Code