Anyone writing multiplatform/common classes with D...
# multiplatform
l
Anyone writing multiplatform/common classes with Dagger’s
@Inject
on it? Since it’s a JVM-only type, so I tried to create my own
Inject
with
@OptionalExpectation
on it, but can’t seem to figure out the
actual
for it.
d
It should look the same as
@JvmName
. You can look at that for inspiration.
j
it should just be
actual typealias Inject = javax.inject.Inject
l
That work, thank you both