Back to project page StockTicker.
The source code is released under:
MIT License
If you think the Android project StockTicker 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.github.premnirmal.ticker; /*from ww w . ja va 2s . c o m*/ import android.content.Context; import com.github.premnirmal.ticker.network.ApiModule; import dagger.Module; import dagger.Provides; /** * Created by premnirmal on 12/21/14. */ @Module( includes = { ApiModule.class }, complete = true, library = false ) public class AppModule { private final Context app; public AppModule(Context app) { this.app = app; } @Provides Context provideApplicationContext() { return app; } }