jw
02/25/2020, 6:53 PMTmpod
02/25/2020, 6:53 PMTmpod
02/25/2020, 6:54 PMjw
02/25/2020, 6:55 PMCLOVIS
02/25/2020, 6:56 PMMarc Knaup
02/26/2020, 5:26 AMEric Ampire [MOD]
02/26/2020, 9:02 AMJoan Colmenero
02/26/2020, 8:26 PMelizarov
02/27/2020, 7:35 AMNikita Khlebushkin
02/27/2020, 3:29 PMuser
02/27/2020, 4:30 PMsnowe
02/27/2020, 5:20 PMsnowe
02/27/2020, 5:20 PMEric Ampire [MOD]
02/28/2020, 12:10 PMArian Stolwijk
02/28/2020, 6:58 PMkotlinc
and stdlib-jdk8
together? I get
PathExt.kt:7:15: error: unresolved reference: streams
import kotlin.streams.toList
^
PathExt.kt:12:41: error: unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
even though I run with the -include-runtime -jvm-target 1.8 -d
arguments.. somehow I need to include the stdlib-jdk8
but I'm not sure how 🤔Orhan Tozan
02/28/2020, 10:28 PMtateisu
02/29/2020, 9:42 AMChills
02/29/2020, 10:54 AMnull
Chills
02/29/2020, 10:54 AMshaktiman_droid
03/01/2020, 5:39 PMTypealias
in public API
for an Android Library
written in Kotlin
?shaktiman_droid
03/01/2020, 5:42 PMshaktiman_droid
03/01/2020, 5:43 PMJava
shaktiman_droid
03/01/2020, 5:43 PM@PublishedApi
or any other annotations doesn’t work for Typealiases
Omar Ahmed
03/02/2020, 3:09 PMuser
03/03/2020, 10:30 AMrudolf.hladik
03/03/2020, 3:00 PMDeprecated
annotation?
I have a problem with ReplaceWith. I have a class Box<T: Any>(initValue: T)
and I want to mark it as deprecated and enable smart correction to change it to BetterBox<T: Any>(initValue: T)
rudolf.hladik
03/03/2020, 3:03 PM@Deprecated("use BetterBox", ReplaceWith("BetterBox(initValue)" ))
but then in a code
val box = Box("magic") // when I hit alt + enter I get this
val box = BetterBox<T>("magic") // I can't get rid of unnecessary <T> :