electrolobzik
08/06/2020, 4:57 PMpackage com.test_parcelize
import com.test_parcelize.TestNestedParcelize.*
interface TestI<T : Any>
class TestNestedParcelize : TestI<State> {
@Parcelize
data class State(
val isLoading: Boolean = false
)
}
In this example `@Parcelize`doesn’t work. I can’t import it, the code analyser breaks. if I replace TestNestedParcelize.*
to TestNestedParcelize.State
everything works. Looks like a bug in the kotlin plugin.Alexey Belkov [JB]
08/07/2020, 8:43 AMelectrolobzik
08/07/2020, 10:41 AM