timm
12/12/2018, 4:02 PMLiliia
12/13/2018, 1:41 PM0.0.44
version of kotlin-frontend-plugin
with new multiplatform support is just released. See an example here: https://github.com/Kotlin/kotlin-frontend-plugin/tree/master/examples/new-mppkpgalligan
12/14/2018, 2:16 AMkpgalligan
12/14/2018, 2:17 AMhmole
12/14/2018, 7:00 AMloganj
12/14/2018, 6:37 PMloganj
12/14/2018, 6:38 PMaddamsson
12/14/2018, 8:40 PMbuild.gradle
files I'm afraid 😞Hauke Radtki
12/16/2018, 11:15 AMaddamsson
12/16/2018, 11:30 PMRobert
12/17/2018, 8:51 PMjava.lang.String
. Check your module classpath for missing or conflicting dependencies", what should I change? What should my module SDK be; Kotlin SDK or Java SDK?unixer
12/18/2018, 1:07 PMunixer
12/18/2018, 1:10 PMunixer
12/18/2018, 1:10 PMhiperbou
12/18/2018, 4:37 PMhiperbou
12/18/2018, 4:37 PMgoncalossilva
12/19/2018, 3:26 AMSeri
12/19/2018, 7:10 PMSeri
12/19/2018, 7:10 PMSeri
12/19/2018, 7:10 PMpandawarrior
12/20/2018, 5:27 AMegorand
12/23/2018, 8:09 PMegorand
12/23/2018, 8:10 PMegorand
12/24/2018, 2:18 AMCould not find method baseline() for arguments [com.squareup.okio:okio:1.14.1
egorand
12/24/2018, 2:18 AMRobert
12/26/2018, 8:09 PMexpect class BigInteger(value: String) : /*Number,*/ Comparable<BigInteger> {
// ...
companion object {
val ZERO: BigInteger = BigInteger("0")
}
}
This is what I have now, but gives me an error on BigInteger
Expected property cannot have an initializer
, also I cannot use by lazy
egorand
12/26/2018, 8:12 PMRobert
12/26/2018, 8:14 PMBigInteger
-class, as I have the same variable for BigDecimal
. I tried this (toplevel): val BigInteger.ZERO: BigInteger = BigInteger("0")
but that gives me an error alsoRobert
12/26/2018, 8:14 PMExtension property cannot be initialized because it has not backing field
Robert
12/26/2018, 8:15 PMBigInteger.zero
... or is this another error then?