Skip to content

Commit

Permalink
Fix non kapt case
Browse files Browse the repository at this point in the history
(cherry picked from commit f016258)
  • Loading branch information
agolubevgo authored and KSP Auto Pick committed Mar 7, 2024
1 parent 65a58e3 commit ecf5adc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -85,7 +85,7 @@ object AndroidPluginIntegration {
val filteredSources = Callable {
val destinationProperty = (kaptProvider?.get() as? KaptTask)?.destinationDir
val dir = destinationProperty?.get()?.asFile
sources.filter { dir?.isParentOf(it.dir) == false }
sources.filter { dir?.isParentOf(it.dir) != true }
}
when (task) {
is KspTaskJvm -> {
Expand Down

0 comments on commit ecf5adc

Please sign in to comment.