I recently upgraded from Android Studio 2.3 to 3.0 and kotlin 1.1.4to 1.1.51.
Now I see this message in the gradle console:
'kapt.generateStubs' is not used by the plugin 'kotlin-kapt'
I have this in mine build.gradleso that my project works with some libraries using annotation processing:
kapt {generateStubs = true}
The string is generateStubsno longer needed and is it safe to delete it? Or is there another action I must take to remove the warning message above?
triad source
share