Fixed
Status Update
Comments
al...@google.com <al...@google.com>
ap...@google.com <ap...@google.com> #2
This error usually indicates misconfiguration, as @Composable function is not transformed. Make sure you applied Compose compiler to that module.
na...@google.com <na...@google.com> #3
I presumed the same, but i think we apply the compose compiler to all of our modules. I'll check again.
Also the fact this works fine for the previous version is odd.
previous versions
compiler 1.5.4
kotlin 1.9.20
ksp 1.9.20-1.0.14
Also the fact this works fine for the previous version is odd.
previous versions
compiler 1.5.4
kotlin 1.9.20
ksp 1.9.20-1.0.14
Description
Version used: 1.11.0-beta02
This is rather a simple lint issue: The methods
PendingIntentCompat#getActivity
andPendingIntentCompat#getService
can returnnull
values if the flag is set toPendingIntent.FLAG_NO_CREATE
whose documentation is as follows:So, the
@NonNull
annotation for return type is simply wrong and should be@Nullable
instead.