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
Currently, Dagger can inject into Kotlin protected fields. I believe this is because the Kotlin protected field gets translated into a Java protected field, which escalates the visibility.
In Kotlin, internal should be the minimum visibility for injected fields. I discovered this while working on cl/578269246. Internal bug is b/314160777.
The text was updated successfully, but these errors were encountered:
Currently, Dagger can inject into Kotlin protected fields. I believe this is because the Kotlin protected field gets translated into a Java protected field, which escalates the visibility.
In Kotlin, internal should be the minimum visibility for injected fields. I discovered this while working on cl/578269246. Internal bug is b/314160777.
The text was updated successfully, but these errors were encountered: