Mina-

Results 9 comments of Mina-

![image](https://user-images.githubusercontent.com/74696602/179372985-49242ef3-c46e-425d-bc80-96bc91f714bb.png) When clicking sidebar DM, TypeError thrown so maybe this can be problem?

@greenrobot-team Sorry for late response! this is my example code: ```kotlin import com.fasterxml.jackson.annotation.JsonIgnore import io.objectbox.annotation.* // Below import notation creates error not in compile time, which creates unrecognizeable error inside...

Isn't `expect val` and `actual const val` isn't fit on this case? as the reference: https://youtrack.jetbrains.com/issue/KT-18856/Can-we-have-expect-actual-consts#focus=Comments-27-2335514.0-0 We need to investigate how the compiler handles it internally and what errors may...

btw, maybe seperatable issue, installer's `intallationPath` is not applied when `dirChooser = false`... Is it intended behavior?

can you try adding this to top of your code and rebuild your project? ```kotlin import com.example.myApp.BuildKonfig ``` BuildKonfig file is created at compile time, not gradle configure time, and...

btw, sorry for empty issue at Initial! I've mistyped enter and github submitted the issue with empty.

Thank you for the fast response! Is it possible to create `CorsServerErrorHandler` to wrap and provide CORS header for another `ServerErrorHandler`'s response which will actually return a value? As I...

like this? ```kotlin fun corsExceptionHandlerDecorator(handler: ServerErrorHandler) = object : ServerErrorHandler { override fun onServiceException(ctx: ServiceRequestContext, cause: Throwable): HttpResponse? { ctx.additionalResponseHeaders().withMutations { builder -> ctx.request().headers()["origin"]?.let { builder.add("access-control-allow-origin", it) } builder.add("access-control-allow-credentials", "true")...

Thanks for the confirmation! I'll check more and contribute later if I can.