skip to Main Content

Android Studio – Backend Internal error: Exception during psi2ir

I've been trying to use kodein in my android studio and I'm getting this issue The root cause org.jetbrains.kotlin.psi2ir.generators.ErrorExpressionException was thrown at: org.jetbrains.kotlin.psi2ir.generators.ErrorExpressionGenerator.generateErrorCall(ErrorExpressionGenerator.kt:99) null: KtCallExpression: kodein() at org.jetbrains.kotlin.backend.common.CodegenUtil.reportBackendException(CodegenUtil.kt:239) here is how I'm calling it in activity override val kodein by…

VIEW QUESTION

How to run multiple JVM params in docker-compose?

I got this list of JVM params from the following answer https://stackoverflow.com/a/35108974/7809534: -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9010 -Dcom.sun.management.jmxremote.local.only=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false And I would like to run them in docker-compose. This is what I tried: environment: - JAVA_TOOL_OPTIONS="-Dcom.sun.management.jmxremote" - JAVA_TOOL_OPTIONS="-Dcom.sun.management.jmxremote.port=9010" - JAVA_TOOL_OPTIONS="-Dcom.sun.management.jmxremote.local.only=false" - JAVA_TOOL_OPTIONS="-Dcom.sun.management.jmxremote.authenticate=false"…

VIEW QUESTION
Back To Top
Search