You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MediaSessionConnector.PlaybackPreparer.onPrepareFromUri's parameter extras is not annotated with @nullable.
This forces kotlin to override nonnull parameter.
As tested, this will crash on api level 19 and 21: Parameter specified as non-null is null: method kotlin.jvm.internal.Intrinsics.checkParameterIsNotNull, parameter extras
The text was updated successfully, but these errors were encountered:
The MediaSessionConnector gets a Bundle passed to the MediaSession.Callback
from the framework which can be null. This needs to be properly annotated
with @nullable.
Issue: #7234
PiperOrigin-RevId: 307822764
The missing annotations have been added (see commit above). Many thanks for reporting.
I'm going to close this issue. Please re-open if I missed something.
The MediaSessionConnector gets a Bundle passed to the MediaSession.Callback
from the framework which can be null. This needs to be properly annotated
with @nullable.
Issue: #7234
PiperOrigin-RevId: 307822764
The MediaSessionConnector gets a Bundle passed to the MediaSession.Callback
from the framework which can be null. This needs to be properly annotated
with @nullable.
Issue: #7234
PiperOrigin-RevId: 307822764
MediaSessionConnector.PlaybackPreparer.onPrepareFromUri's parameter
extras
is not annotated with @nullable.This forces kotlin to override nonnull parameter.
As tested, this will crash on api level 19 and 21:
Parameter specified as non-null is null: method kotlin.jvm.internal.Intrinsics.checkParameterIsNotNull, parameter extras
The text was updated successfully, but these errors were encountered: