-
Update is skiped since `2.0.0` throws exception in ksp processor while collecting `@Injectable`.
Update after https://github.com/square/kotlinpoet/issues/2016 is resolved.
-
I think writing text as a file isn't the safest solution. [KotlinPoet](https://square.github.io/kotlinpoet/) would help you by generation correct kotlin code.
-
We can use [kotlinpoet](https://square.github.io/kotlinpoet/) to generate model classes.
It will simplify supporting updates and forks like `cosv4k` and reduce code base
-
Hi! I ran into an issue where if a class references a class that is in the parent package, imports are not added.
For example:
```kotlin
package me.test.data.inner
import at.kopyk.CopyExt…
-
e: java.lang.StackOverflowError
at org.jetbrains.kotlin.types.StarProjectionImpl.(StarProjectionImpl.kt:34)
at org.jetbrains.kotlin.types.TypeUtils.makeStarProjection(TypeUtils.java:482)
at org.…
-
The DI graph generation throws `StackOverflowError` when using specific generics combination.
**Library version**: `0.4.0-alpha05`
**Repro steps or stacktrace**:
To repro we need to use `@mo…
-
Should okio offer an `BufferedSink` -> `Appendable` adapter for use with `kotlinpoet` and other libraries that do not accept output streams?
```kotlin
fileSystem.write(path) {
// Along the line…
saket updated
1 month ago
-
### Ktorfit version
2.0.1
### What happened and how can we reproduce this issue?
Upgrading from kotlin 1.9.24 to kotlin 2.0.x and ktorfit 2.0.1 in my multimodule project has been giving error messa…
-
The following code:
```
@kotlinx.serialization.Serializable
@JsonClass(generateAdapter = true)
public class Foo
```
generates an exception during annotation processing (root cause):
```
Cause…
-
It might be useful to generate jetpack compose [ImageVector](https://developer.android.com/reference/kotlin/androidx/compose/ui/graphics/vector/ImageVector?hl=en) from IR. It should be achievable with…