What is this voodoo magic (luckily it was just a h...
# compose
i
What is this voodoo magic (luckily it was just a hacky function I am not using)
Copy code
// TODO(b/137794549): Remove View System-related expect/actuals
internal actual typealias View = android.view.View
So I guess if you are doing compose stuff then you won't be allowed to access
View
in the same file?
s
do you have right imports?
i
yeh I think its been internalised so maybe mixing is not allowed?
s
No, but can you
import android.view.View
on the top of the file?
i
will try, good point
aha! Thanks @shikasd yes It was referencing compose equivalents, cheers
l
Yeah this was an accidental public expect/actual date j compose that we removed
it doesn’t make any difference, it’s all pointing to the same thing, this was just a mistake we made early on and didnt realize it until recently
i
cheers Leland!