Back to project page looking-glass.
The source code is released under:
Apache License
If you think the Android project looking-glass 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 ca.orospakr.lookingglass; /* w ww . j a v a2s. c om*/ import android.content.Context; import javax.inject.Singleton; import dagger.Module; import dagger.Provides; /** * Main ownership point of Looking Glass' own objects. * * The two services are included in the injects list because they are instantiated by the Andorid platform, and are responsible for injecting themselves into the object graph. */ @Module(addsTo = AndroidModule.class, injects = {AuthAnswerService.class, HttpService.class}) public class LookingGlassModule { }