Guest User

Untitled

a guest
Jan 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. @Module
  2. public class AnalyticsModule {
  3.  
  4. private Application application;
  5.  
  6. public AnalyticsModule(Application application) {
  7. this.application = application;
  8. }
  9.  
  10. @Provides
  11. @Singleton
  12. AnalyticsTracker providesAnalyticsTracker(PrefsAggregator prefsAggregator, DeviceIdUtils deviceIdUtils) {
  13. return new AnalyticsTrackerImpl(prefsAggregator, deviceIdUtils,
  14. new GoogleAnalyticsService(application),
  15. new AppMetrikaAnalyticsService(application));
  16. }
  17.  
  18. }
Add Comment
Please, Sign In to add comment