Basically I have a project written in Kotlin and Dagger2. I am trying to implement one base feature. Most examples do not specify <application android:name=".MyApplication" .... >
. I need to use an Application object to call android Injector from MyApplication.onCreate(), but from my debugger I never see MyApplication object being called. So, my activity cannot inject an object.
I tried using tools:replace to use another Application object, but still no luck (Separate manifest for instant app).
Please help.