Back to project page u2020.
The source code is released under:
Apache License
If you think the Android project u2020 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.jakewharton.u2020.ui; /*from ww w . j a va 2 s .com*/ import com.jakewharton.u2020.ui.gallery.GalleryView; import dagger.Module; import dagger.Provides; import javax.inject.Singleton; @Module( injects = { MainActivity.class, GalleryView.class, }, complete = false, library = true ) public class UiModule { @Provides @Singleton AppContainer provideAppContainer() { return AppContainer.DEFAULT; } @Provides @Singleton ActivityHierarchyServer provideActivityHierarchyServer() { return ActivityHierarchyServer.NONE; } }