Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ configurations.all {
// multi-release overlay that this AGP's Jetifier can't parse ("Unsupported
// class file major version 68"). 1.15.x is the last line without that overlay
// and is still API-compatible with mockito's usage.
force 'net.bytebuddy:byte-buddy:1.15.11'
force 'net.bytebuddy:byte-buddy-agent:1.15.11'
force 'net.bytebuddy:byte-buddy:1.18.14'
force 'net.bytebuddy:byte-buddy-agent:1.18.14'

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version bump contradicts comment warning about Jetifier incompatibility

Medium Severity

The comment on lines 145–148 explicitly states that 1.15.x is the last byte-buddy line without the META-INF/versions/24 multi-release overlay that this project's AGP Jetifier can't parse (class file major version 68 error). The force directives now pin 1.18.14, which is well past the stated safe range. If the overlay issue persists in 1.18.14, this will break the build. If 1.18.x actually resolved the overlay problem (e.g., via the Java 8 baseline introduced in 1.18.7), the comment is now stale and misleading.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 8a49248. Configure here.

}
}
Loading