use of com.github.vase4kin.teamcityapp.dagger.modules.AppModule in project TeamCityApp by vase4kin.
the class TeamCityApplication method onCreate.
@Override
public void onCreate() {
super.onCreate();
// #=============== Fabric ================#//
if (!BuildConfig.DEBUG) {
Fabric.with(this, new Crashlytics());
}
// #=============== Iconify ================#//
Iconify.with(new MaterialModule()).with(new MaterialCommunityModule()).with(new FontAwesomeModule());
// #=============== Dagger ================#//
// app injector init
// net injector init
mAppInjector = DaggerAppComponent.builder().appModule(new AppModule(this)).build();
// Get default url
String mBaseUrl = mAppInjector.sharedUserStorage().getActiveUser().getTeamcityUrl();
// Rest api init
if (!TextUtils.isEmpty(mBaseUrl)) {
buildRestApiInjectorWithBaseUrl(mBaseUrl);
}
}
Aggregations