I need something that can make my class nullable/optional because of the runtime errors that is happening on some devices.
Is this possible?
class M
I had the same problem and solved like this:
@Inject @JvmField var presenter: Presenter? = null
Hope it helps.