Bug fixes
- Fixed #4303: Upgrade Hilt Gradle Plugin to support KSP2 configuration. (76b5819)
- Fixed #4544: Removes private from InstanceHolder field to avoid unnecessary accessor method. (07d8f88)
- Fixed #4533: Fixes path separator for Windows when creating LazyClassKey proguard file. (efa421a)
Notable changes
- In preparation for jakarta support, Dagger’s generated factories now include a
create()
method that usesdagger.internal.Provider
rather thanjavax.inject.Provider
. For now, thejavax.inject.Provider
create()
method is also kept for compatibility, but it will be removed in a future release. When that happens, libraries built with the newer version of Dagger may break downstream users of@Component
that are built with an older version of Dagger. (d60729d)