I am in process of migrating to HILT from RoboGuice in my current app, there are alot of placs where injection in RoboGuice is done using below way:
IHelper helper = RoboGuice.getInjector(getApplicationContext()).getInstance(IHelper.class);
Dose HILT support this kind of injection, as per my knowledge HILT only does field and method injection. And correct me if I am wrong, field injection only works if I have @AndroidEntryPoint annotation declared (that means that class has to be one that aligns with @AndroidEntryPoint approved classes)