GarouDan
02/05/2019, 10:56 PMbuild.gradle
but not build.gradle.kts
, but maybe I missing something.Nikky
02/05/2019, 11:22 PMDebug Build Process
, it is disabled on each restart i think
i am not sure you can set breakpoints directly in the build.gradle.kts file but maybe as firs action you could call to some .kt file in buildSrc
and set a breakpoint there
i hav not tried that yet
but i know it works for debugging annotation processorshttps://i.imgur.com/My2IRLl.png▾
eskatos
02/06/2019, 8:11 AMGarouDan
02/06/2019, 11:17 AMrun configurations
, are you running the build process this way?plugins {
kotlin("multiplatform") version "1.3.20"
}
group = "com.example"
version = "0.0.1"
allprojects {
// Workaround to avoid downloading dependencies every time.
repositories {
mavenLocal().apply { //I tried to put here
content { // also here
excludeGroup("Kotlin/Native")
}
}
maven { //here
url = uri("<https://dl.bintray.com/soywiz/soywiz>") // here
content { // and here too
includeGroup("com.soywiz")
excludeGroup("Kotlin/Native")
}
}
jcenter() {
content {
excludeGroup("Kotlin/Native")
}
}
google().apply {
content {
excludeGroup("Kotlin/Native")
}
}
}
}
build.gradle.kts
file and also in some internal classes like ProjectExtensions
. Then I created a Gradle
run configuration with the build
as the task and started this run configuration in debug mode. But it is still not working. Am I missing something? I’m very needing this. Thanks in advance.Nikky
02/09/2019, 8:57 PMlogger::lifecycle
calls