Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Attachment actions
Unintended behavior
View staffing
Description
Found in Iguana 2023.2.1 Beta 1.
In AndroidX, when I switch
:core:core
to depend onproject(":annotation:annotation")
as a project-type dependency rather thanandroidx.annotation:annotation:1.7.1
as a prebuilt, the Java annotation targets suddenly stop working in Java code.For example, it shows "
@NonNull
not applicable to parameter" despite showing thatNonNull
is annotated with@Target(value = {..., ElementType.PARAMETER})
. See attached screenshot.Repro steps are to move
:core:core
to depend onproject(":annotation:annotation")
and then sync Gradle.