Has anyone figured out a good way to get kapt to r...
# gradle
m
Has anyone figured out a good way to get kapt to run for unit tests, short of adding an artificial library to the “kaptTest” configuration”? I’ve got databinding configured for a legacy library, and i’m replacing platform() calls with version catalogs. As such i removed the dependency call for
kaptTest(platform(…))
and now databinding isn’t generating the appropriate symbols unless i put some jar in the
kaptTest
configuration. (and yes, i have
isEnabledForTests
set to true)