Back to project page ponyville-live-android.
The source code is released under:
Apache License
If you think the Android project ponyville-live-android 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.ponyvillelive.app.ui; /*w w w . j a v a 2s. c o m*/ import javax.inject.Singleton; import dagger.Module; import dagger.Provides; /** * Created by berwyn on 16/08/14. */ @Module( injects = { MainActivity.class }, complete = false, library = true ) public class UiModule { @Provides @Singleton AppContainer provideAppContainer() { return AppContainer.DEFAULT; } @Provides @Singleton ActivityHierarchyServer provideActivityHierarchyServer() { return ActivityHierarchyServer.NONE; } }