tadej
01/08/2019, 11:07 AMaltavir
01/08/2019, 11:45 AMtoomanyeduardos
01/08/2019, 6:53 PMbasher
01/09/2019, 5:51 PMByteArray
?Matej Kormuth
01/09/2019, 9:59 PMFloat
and Double
not have .SIZE_BYTES
property when Int, Long and other primitives do?basher
01/10/2019, 2:34 AMalexfacciorusso
01/10/2019, 10:16 AMyuya_horita
01/11/2019, 11:28 AMbasher
01/11/2019, 11:20 PMCyrille QUÉMIN
01/12/2019, 6:17 PMkyonifer
01/13/2019, 2:33 AMlinkerOpts
inside the test KotlinNativeCompilation
are ignored when it comes to linking the test debug executable.alec
01/14/2019, 4:41 AMalec
01/14/2019, 4:42 AMcoolcat
01/14/2019, 4:01 PMnapperley
01/14/2019, 8:21 PMwollnyst
01/15/2019, 8:02 AMByteReadChannel
and ByteWriteChannel
in <http://kotlinx.coroutines.io|kotlinx.coroutines.io>
, which might be what your're looking for.Vinicius Carvalho
01/15/2019, 2:51 PMVinicius Carvalho
01/15/2019, 3:25 PMkotlinx.cli.*
on my main Kt fileMatej Kormuth
01/15/2019, 10:10 PMaaltergot
01/16/2019, 5:24 PMspierce7
01/16/2019, 8:55 PMraniejade
01/17/2019, 10:29 AMsrc/nativeMain/kotlin/godot/core/Vector2.kt:10:13: error: invocation of C function pointer with return type 'CValue<*>' is not supported yet
Is it tracked somewhere? Tried searching in github and youtrack but with no luck.alec
01/17/2019, 10:31 PMsdeleuze
01/18/2019, 6:51 AMDiego
01/18/2019, 11:56 AM@protocol Foo -> interface FooProtocol
. Why? I guess this is a question for the designers of Kotlin/Native but I’m just wondering what is the reason behind that. My opinion is that this is unnecessary and I would prefer this to be transparent and just use the interface with the original protocol name. I do not see why we should be aware about the fact that it comes from a framework.sngrekov
01/18/2019, 9:02 PMdata class DataClassTest(val foo: String = "foo", val bar : Int = 1)
So in kotlin code I can initialize it with default properties like
DataClassTest(foo = "bar")
But when I try to use it the same way in swift
DataClassTest(foo : "bar")
I get an error "Cannot invoke initializer for type 'DataClassTest' with an argument list of type '(foo: String)'"
Am I missing something?napperley
01/22/2019, 3:07 AMnapperley
01/22/2019, 4:49 AMnapperley
01/22/2019, 5:56 AMJoakimForslund
01/22/2019, 9:17 AMJoakimForslund
01/22/2019, 9:17 AMsvyatoslav.scherbina
01/22/2019, 9:23 AMadb
. See Android Native Activity sample README for an example: https://github.com/JetBrains/kotlin-native/blob/master/samples/androidNativeActivity/README.mdJoakimForslund
01/22/2019, 9:25 AMdeploy the apk on the Android device or emulator (note that only ARM-based devices are currently supported).
svyatoslav.scherbina
01/22/2019, 9:27 AMJoakimForslund
01/22/2019, 9:28 AMsvyatoslav.scherbina
01/22/2019, 9:47 AM