cafonsomota
07/17/2019, 1:31 PM./gradlew --no-daemon :app:clean :app:compileDebugKotlin -Dkotlin.daemon.jvm.options="-Xdebug,-Xrunjdwp:transport=dt_socket\,address=5005\,server=y\,suspend=n"
and then to attach a remote configurationsimon.vergauwen
07/18/2019, 3:42 PM./gradlew :module:kaptKotlin --no-daemon -Dorg.gradle.debug=true -Dkotlin.compiler.execution.strategy="in-process" -Dkotlin.daemon.jvm.options="-Xdebug,-Xrunjdwp:transport=dt_socket\,address=5005\,server=y\,suspend=n" --offline
cafonsomota
07/22/2019, 4:11 PMkapt.use.worker.api=true
on gradle.properties 😕. Only with it set I was able to attach the debugger. Thank you!