Michał Klimczak

Results 21 issues of Michał Klimczak

I'm using your fantastic library to test my multiplatform annotation processor which uses common source code and generates ios source sets. The tests look [sth like this](https://github.com/FutureMind/koru/blob/master/koru-processor/src/jvmTest/kotlin/com/futuremind/koru/processor/TypesGenerationTest.kt#L38). Now everything works...

``` buildCodeBlock { add("return %T(", Whatever::class) } ``` Even though this uses KClass, I get this error when running e.g. `kspKotlinIosArm64` ``` java.lang.NoClassDefFoundError: javax/lang/model/type/TypeMirror at com.squareup.kotlinpoet.CodeBlock$Builder.argToType(CodeBlock.kt:377) at com.squareup.kotlinpoet.CodeBlock$Builder.addArgument(CodeBlock.kt:346) at com.squareup.kotlinpoet.CodeBlock$Builder.add(CodeBlock.kt:318)...

When trying to build a project with private Previews, Showkase complains: ``` The methods annotated with Preview can't be private as Showkase won't be able to access them otherwise ```...

The README mentions that in order to use ksp, one should use a `-PuseKsp=true` flag in the gradle command that builds the app. I just checked and it doesn't seem...

Hi, the idea for this lib is really awesome. The only problem now is that it doesn't seem to work with newer codegen moshi, the generated adapter for @Wrapped member...

This is an issue that got mixed with #49. User [@yamakentoc](https://github.com/yamakentoc) reports that this gradle config doesn't result in wrapper classes being generated. ``` // HogeHogeHoge/shared/build.gradle.kts // kotlin version: 1.7,0...

Following this: https://github.com/FutureMind/koru/issues/49#issuecomment-1209501459

Basically, we're waiting for the fix in kotlinpoet to be released. For the time being, the kapt version doesn't have this issue. Should be a couple of days, because the...

bug