DALDEI
01/14/2019, 7:13 PMShawn
01/14/2019, 7:14 PMDALDEI
01/14/2019, 7:15 PMShawn
01/14/2019, 7:16 PMShawn
01/14/2019, 7:16 PM@JvmName
lets the Kotlin compiler use a different name in bytecode to avoid clashesShawn
01/14/2019, 7:17 PMursus
01/14/2019, 7:44 PMxii
08/23/2020, 1:12 AMfrank
08/23/2020, 2:28 AMfields
and variables
in Kotlin files but there is no option in Intellij. Any alternative plugin or etc ...?
In Java files there is the option: Editor | Code style | Java | Wrapping and Braces | Group Declarations | Align VariablesNir
08/23/2020, 3:55 AMAnimesh Sahu
08/23/2020, 5:18 AMRohan Maity
08/23/2020, 10:21 AMRohan Maity
08/23/2020, 10:22 AMcompile time
in Runtime
Nikky
08/23/2020, 3:59 PM* What went wrong:
Plugin [id: 'org.jetbrains.kotlin.jvm'] was not found in any of the following sources:
- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (plugin dependency must include a version number for this source)
and apoprently @Rodrigo Silva faces a similar issue on a project they reopened after a while
is there anything weird going on with the repositories ?melatonina
08/23/2020, 7:44 PMmelatonina
08/23/2020, 7:45 PMmelatonina
08/23/2020, 7:46 PMmelatonina
08/23/2020, 7:48 PMjorge.rego
08/24/2020, 9:32 AMcolintheshots
08/24/2020, 3:15 PMimplementation("org.gradle.kotlin:plugins:1.3.6")
is causing incompatibilities with the 1.4.0 Kotlin Gradle plugin because it depends upon 1.3.72. I guess this is the same as the kotlin-dsl
plugin.Michael
08/24/2020, 3:23 PMkotlin("jvm") version "1.4.0"
for the plugin or kotlin("jvm", "1.4.0")
for the dependency afaikMichael
08/24/2020, 3:23 PMcolintheshots
08/24/2020, 3:29 PMkotlin-dsl
to author plugins with Kotlin is still using 1.3.72. I'm wondering what I need to replace my dependencies with.Michael
08/24/2020, 3:41 PMcolintheshots
08/24/2020, 3:41 PMstephanmg
08/24/2020, 3:49 PMfrank
08/24/2020, 4:30 PMdata objects
and make it less verbose(1 line) and save it in the same file of the class or view.
Experiences with these cases and suggestions? Possible Errors?
PD: In Java separated it from the file as it is a rather verbose language, I'm testing this approach with Kotlin.
Sample Code:
data class InputChooseFolder(val label: Label, val input: TextField, val btnFolder: Button){}
class Portal : View {
// call InputChooseFolder() constructor
}
Steve
08/24/2020, 4:35 PMsnowe
08/25/2020, 6:01 PMmplain
08/25/2020, 7:10 PM