We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With https://kotlinlang.org/docs/whatsnew21.html#ability-to-publish-kotlin-libraries-from-any-host the Apple targets can be built on Linux hosts.
However, the KSP tasks are not aware of this, and are still skipped.
The text was updated successfully, but these errors were encountered:
For now I'm using
afterEvalutate { tasks.withType<KspAATask>().configureEach { setOnlyIf(Specs.satisfyAll()) } tasks.withType<KspTaskNative>().configureEach { setOnlyIf(Specs.satisfyAll()) } }
as a workaround in my project, but the KSP plugin should handle this in a way consistent with the KMP plugin.
Sorry, something went wrong.
Maybe fix google#2267
b5ed582
No branches or pull requests
With https://kotlinlang.org/docs/whatsnew21.html#ability-to-publish-kotlin-libraries-from-any-host the Apple targets can be built on Linux hosts.
However, the KSP tasks are not aware of this, and are still skipped.
The text was updated successfully, but these errors were encountered: