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
Repro from here: https://github.com/slackhq/circuit/blob/main/samples/kotlin-inject/src/main/kotlin/com/slack/circuit/sample/kotlininject/main.kt#L22
typealias KotlinInjectApp = @Composable () -> Unit fun main() = application { val app = remember { AppComponent::class.create().kotlinInjectApp } Window(onCloseRequest = ::exitApplication, title = "Sample") { app() } } @Inject @Composable fun KotlinInjectApp(circuit: Circuit) { CircuitCompositionLocals(circuit) { CircuitContent(MyScreen("Circuit")) } }
To test:
/samples/kotlin-inject/build.gradle.kts
./gradlew :samples:kotlin-inject:kspKotlin
This works fine in KSP1, let me know if this is a KSP bug I should file upstream. This is on KSP 2.1.0-1.0.29.
2.1.0-1.0.29
The text was updated successfully, but these errors were encountered:
@ZacSweers are you able to test your repro against #350?
Sorry, something went wrong.
I can give it another try once it's in snapshots 👍
No branches or pull requests
Repro from here: https://github.com/slackhq/circuit/blob/main/samples/kotlin-inject/src/main/kotlin/com/slack/circuit/sample/kotlininject/main.kt#L22
To test:
/samples/kotlin-inject/build.gradle.kts
./gradlew :samples:kotlin-inject:kspKotlin
This works fine in KSP1, let me know if this is a KSP bug I should file upstream. This is on KSP
2.1.0-1.0.29
.The text was updated successfully, but these errors were encountered: