In the build.kts app file I try to connect the plugin with code kotlin(“kapt”) version “1.8.22” and when synchronizing I get the output that The request for this plugin could not be satisfied because the plugin is already on the classpath with an unknown version, so compatibility cannot be checked. How to resolve the error and achieve project synchronization
This is virtually impossible to guess without seeing your build logic.
With the given information it can only be repeated what you were already told.
You added the plugin to the classpath already without using the plugins block and then try to add it again with a version in the plugins block and thus the compatibility cannot be checked.
This could be because it is a buildSrc dependency, or in the settings script class path, …