kpgalligan
07/03/2018, 9:53 PMEdouard Goossens
07/05/2018, 2:32 PMmarcinmoskala
07/06/2018, 3:20 PMcommon
and common-client
. I added common-native
and I wanted to add common-client-native
. The other one works if i make it as expected by both common modules:
dependencies {
expectedBy project(':common')
expectedBy project(':common-client')
}
But I would prefer to reuse declarations from common-native
like in other platforms:
dependencies {
compile project(':common-native')
expectedBy project(':common-client')
}
This gives me the following error:
Could not find method compile() for arguments [project ':common-native'] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
Similarly compileKonan
.bkenn
07/10/2018, 7:01 PMexpect annotation class NodeEntity(val label: String = "")
and on the jvm target actual typealias NodeEntity = org.neo4j.ogm.annotation.NodeEntity
. The annotation I want to type alias has one field definition of String label() default "";
. I am getting Parameter 'label' has conflicting values in the expected and actual annotation
.gaetan
07/19/2018, 11:07 AMkrtko
07/24/2018, 11:29 PMkrtko
07/25/2018, 11:33 PMexpect class View
and in JS I set the view to be HTMLElement
(an abstract class) and on Android I need it to be FrameLayout
(a plain class)jw
07/25/2018, 11:44 PMjosephivie
07/26/2018, 6:12 PMvmichalak
07/27/2018, 9:43 AMvmichalak
07/27/2018, 5:17 PMnapperley
07/30/2018, 11:52 PMnapperley
07/31/2018, 12:00 AMapomelov
07/31/2018, 7:59 AMkrtko
07/31/2018, 4:55 PMeddie
08/01/2018, 7:33 PM@TargetName
annotation for that. I'm referring more to also exposing things like @JvmField, @JvmStatic, @JvmOverloads, etc. Why do those belong in common code?kpgalligan
08/03/2018, 2:03 PMrusshwolf
08/05/2018, 12:19 AMapomelov
08/07/2018, 9:59 AMafterEvaluate {
copyKotlinJs.dependsOn copyDependenciesKotlinJs
}
But I can't find where does task copyDependenciesKotlinJs
come from? Seems my project has the plugins applied, but there is no such task.apomelov
08/07/2018, 10:23 AMpabl0rg
08/09/2018, 1:54 AMJurriaan Mous
08/09/2018, 7:21 AMkenkyee
08/09/2018, 8:06 PMorangy
kpgalligan
08/09/2018, 10:16 PMankushg
08/09/2018, 10:17 PMkpgalligan
08/09/2018, 10:21 PMorangy
ankushg
08/10/2018, 10:02 PMgit submodule
so I can keep developing while we figure out private repo options. The IDE doesn't maintain the nesting of my projects in my KMPP and complains that `actual`s in my JS/JVM platform projects don't have corresponding `actual`s (they do), and that they can't use certain methods because they're internal
to the common
module...hmole
08/12/2018, 9:27 PM