Deactivated User
10/05/2017, 5:40 PMDeactivated User
10/05/2017, 5:58 PMgaetan
10/09/2017, 10:32 AMinternal
.
I have a jvm module that implements this module.
My test code inside the jvm module does not see the internal function.
Is this normal?snrostov
10/10/2017, 8:51 PMsnrostov
10/11/2017, 3:56 PMDeactivated User
10/14/2017, 11:51 PMorg.intellij.lang.annotations.Language
annotation in common code?jossiwolf
10/20/2017, 4:22 PMimport reagent.Observable
expect interface ExampleAPI {
fun getUsers(): Observable<UserModel>
}
This is the error from Gradle: Unresolved reference: Observable
Anything I'm not seeing there?
This code is in the common module of my projectDeactivated User
10/29/2017, 3:15 PMe: java.lang.IllegalStateException: Cannot get FQ name of local class: class <no name provided>
at org.jetbrains.kotlin.serialization.StringTableImpl.getFqNameIndexOfLocalAnonymousClass(StringTableImpl.kt:79)
...
Deactivated User
10/31/2017, 1:21 PMActual ... has no corresponding expected declaration
since first version, when compiling with gradle. I have recorded a video reproducing the problem.
It seems that it happens when modifying a file containing an actual. When having two modules with expectedBy using platform-jvm. I have android + jvm doing this.
https://youtu.be/DsqGGRimTnY▾
ilya.gorbunov
11/05/2017, 3:42 AMilya.gorbunov
11/06/2017, 10:54 PMgregopet
11/08/2017, 8:39 AMInt
missing in the common module, though, even though the module's target platform is marked as Common (experimental)
and the language version is at 1.2 - any hints on what I could try?ilya.gorbunov
11/08/2017, 3:00 PMjstuyts-squins
11/10/2017, 7:50 AMilya.gorbunov
11/10/2017, 7:59 PMczuckie
11/22/2017, 8:05 AMInt
?czuckie
11/22/2017, 8:19 AMpdvrieze
11/22/2017, 10:59 AMmersan
11/22/2017, 8:34 PMspand
11/23/2017, 7:52 AMRequired: (kotlin.text.Appendable /* = java.lang.Appendable */) -> Unit
Found: (kotlin.text.Appendable) -> Unit
spand
11/23/2017, 9:41 AMapp
variable read in foo/kotlin/.../Foo.kt the previous mentioned type error is shownnatpryce
11/30/2017, 7:18 AMexpect
definition in the stdlib for common? I’m using 1.2.0 and IntelliJ is showing compilation errors for uses of Comparator in common modulesspand
11/30/2017, 7:57 AMmarcinmoskala
12/03/2017, 10:57 AMavolkmann
12/05/2017, 7:58 PMseanf
12/06/2017, 2:54 PMcommon
(not jvm
or js
) module - which means I can't just use reflection to examine .class files from a Gradle plugin. I'm starting to think I need an annotation processor - but will that work in a common
module? (Update: apparently it won't.)agrosner
12/06/2017, 4:01 PMcom.android.library
with kotlin-platform-jvm
which doesnt work. also there isn't a kotlin-platform-android
. Is there something I am doing wrong here?Mark
12/07/2017, 3:41 AMkotlinx-corountines-core
imported through my common module and I have been successfully using it transitively in the JVM project (a little TornadoFx visualizer) to do a bit of processing off of the main thread. However, I am now trying to speed up some of the common logic and I've just started getting an unresolved reference to kotlinx
, runBlocking
and launch
when compiling the common module. Is there something special I need to do in the Gradle imports to ensure that I am getting an implementation of coroutines that is compatible with Kotlin common? Some other trick that I am missing?alex.hart
12/07/2017, 4:55 PMmarcinmoskala
12/10/2017, 5:38 PMmarcinmoskala
12/10/2017, 5:38 PMJacobPed
12/10/2017, 6:11 PMmarcinmoskala
12/10/2017, 6:39 PMilya.gorbunov
12/11/2017, 12:54 AMmarcinmoskala
12/11/2017, 3:39 AMilya.gorbunov
12/11/2017, 3:39 AMmarcinmoskala
12/11/2017, 3:41 AMilya.gorbunov
12/11/2017, 3:42 AMmarcinmoskala
12/11/2017, 3:42 AMilya.gorbunov
12/11/2017, 3:44 AMapply plugin: 'kotlin-platform-common'
in their gradle files?marcinmoskala
12/11/2017, 3:44 AMapply plugin: 'kotlin'
ilya.gorbunov
12/11/2017, 3:50 AMmarcinmoskala
12/11/2017, 3:50 AMgildor
12/11/2017, 5:34 AM