rob42
01/17/2024, 10:01 PMwasyl
01/17/2024, 10:04 PMdownload sources during project import
option will help. It's new and I recall something about it being off by defaultrob42
01/17/2024, 10:06 PMrob42
01/17/2024, 10:06 PMwasyl
01/17/2024, 10:06 PMimport project
or sync project with gradle files
action, depending how it's called (it's sync in Android Studio and I think import
in IJ)rob42
01/17/2024, 10:13 PMDaniel Pitts
01/17/2024, 10:48 PMrob42
01/17/2024, 10:57 PMSam
01/18/2024, 8:56 AMKlitos Kyriacou
01/18/2024, 9:15 AMidea
Gradle plugin, and then use that in the build.gradle.kts to automatically download sources:
plugins {
val kotlinVersion = "1.9.22"
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
application
idea // <------ add this
}
idea {
module {
isDownloadJavadoc = true
isDownloadSources = true
}
}
Having said that, I don't like the idea of contaminating the Gradle build file with IDE-specific things.rob42
01/18/2024, 3:50 PMrob42
01/18/2024, 3:51 PMrob42
01/18/2024, 4:02 PMrob42
01/18/2024, 4:05 PMDaniel Pitts
01/18/2024, 4:08 PMrob42
01/18/2024, 4:09 PMrob42
01/18/2024, 4:09 PMDaniel Pitts
01/18/2024, 4:09 PMDaniel Pitts
01/18/2024, 4:10 PMbuild.gradle.kts
file? That's a piece I can help with.rob42
01/18/2024, 4:14 PMrob42
01/18/2024, 4:15 PMrob42
01/18/2024, 4:20 PMKlitos Kyriacou
01/18/2024, 4:35 PMDaniel Pitts
01/18/2024, 4:44 PMDaniel Pitts
01/18/2024, 4:59 PMDaniel Pitts
01/18/2024, 4:59 PMrob42
01/18/2024, 5:41 PMrob42
01/18/2024, 8:56 PMKlitos Kyriacou
01/19/2024, 9:21 AM