Rey

Results 6 comments of Rey

Similar to this, when an interface is annotated with `@ExperimentalApi` it's a `@RequiresOptIn(level=ERROR)`, ktorfit don't propagate as `@ExperimentalApi` or `@OptIn(ExperimentalApi::class)` cause compiltation error and force me to reduce level to...

same issues in Android testing with [flet app](https://play.google.com/store/apps/details?id=com.appveyor.flet&pli=1), in web and desktop works fine. ``` bash INFO: 192.168.1.5:34260 - "GET /flet-vacunas-panama/main.pyimages/icon.png HTTP/1.1" 404 Not Found INFO: 192.168.1.5:55314 - "GET /flet-vacunas-panama/main.pyimages/fondo2.jpg...

Example: _This annotation is not applicable to target 'member function'. Applicable targets: type usage_ ![Image](https://github.com/user-attachments/assets/989e711e-d492-4137-a6e2-16f9ab388b15) This is useful when you want to make a Java-compatible library and you need to...

I use this method on my bot `extends AbilityBot implements SpringLongPollingBot`. You can change from Flux to stream. With `.register()` can be awesome. ```java @AfterBotRegistration @SuppressWarnings("unused") public void registerCommands() {...

Hey @yne I was experiencing this error when writing my code in Kotlin and it was because I didn't validate this in the ARL response. https://gitlab.com/RemixDev/deezer-js/-/blob/main/deezer/index.js?ref_type=heads#L85 gw api responds well...

Hey, I think you have 3 ways to handle that: 1. Create a [class serializable](https://ktor.io/docs/client-serialization.html#create_data_class) (or the content type plugin used) for each use case (recommended) 2. Use a [custom...