AMIT SHEKHAR
AMIT SHEKHAR
Yes. We will do it soon
Currently, the simulator depends on Google APIs
You can create a method in AppComponent to inject in your class ``` @Singleton @Component(modules = {AndroidInjectionModule.class, AppModule.class, ActivityBuilder.class}) public interface AppComponent { @Component.Builder interface Builder { @BindsInstance Builder application(Application...
You need to get the application component and call inject(this)
From where you get the AppComponent? It should be from the application class.
Create a variable in application class as `AppComponent appComponent`. And do like below: ``` appComponent = DaggerAppComponent.builder() .application(this) .build(); appComponent.inject(this); ``` Then get the `appComponent` through getter from the application...
@JayGreenApex Have you rebuild the project? Also refer to this: https://github.com/MindorksOpenSource/android-mvp-architecture/issues/1
https://mindorks.com/blog/powerful-android-orm-greendao-3-tutorial
@ashish-andev It depends on the use-case like: - How frequently we are going to use that object? - How much resource is needed to create the object of that class?...
Let us check