use of com.inceptai.dobby.NetworkLayer in project dobby-android by InceptAi.
the class ProdModule method providesNetworkLayer.
@Singleton
@Provides
public NetworkLayer providesNetworkLayer(DobbyApplication application, DobbyThreadpool threadpool, DobbyEventBus eventBus) {
NetworkLayer networkLayer = new NetworkLayer(application.getApplicationContext(), threadpool, eventBus);
application.getProdComponent().inject(networkLayer);
networkLayer.initialize();
return networkLayer;
}
Aggregations