as we're talking about kapt here: I've been trying...
# stdlib
a
as we're talking about kapt here: I've been trying to run a simple annotation processor (taken from kotlin examples repo) as a separate module in my android project. However I'm not sure how I should configure app build.gradle; I've tried
kapt project(':kprocessor')
, I've tried
kapt files('libs/kprocessor.jar')
to no extent. Could anyone take a look at the repo and say what I'm doing wrong? https://github.com/arkadiytehgraet/kaptsample Does
kapt
even support this feature?