Bug P2
Status Update
Comments
al...@google.com <al...@google.com>
gh...@google.com <gh...@google.com>
fl...@polarsteps.com <fl...@polarsteps.com> #2
When we fix nullability in Jetpack libraries, it is very painful for clients. Also for us attempting to land in g3.
I think this is a good idea; however, I'm not sure if we'd run into any issues since these are currently synthetic annotations generated by Metalava. It's possible that creating real annotations might conflict with the SDK stubs.
Description
The
otherwise
parameter of VisibleForTesting can be passed one of the following values:NONE
PACKAGE_PRIVATE
PRIVATE
PROTECTED
(c.f.https://developer.android.com/reference/kotlin/androidx/annotation/VisibleForTesting )
That list doesn't contain the value
INTERNAL
which corresponds to Kotlin'sinternal
access modifler.In multi-module project, it would be useful if we write UI Tests across multiple modules.