Back to project page Android-MyStarterApp.
The source code is released under:
Apache License
If you think the Android project Android-MyStarterApp 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 co.kaush.mystarterapp.app.data.modules; //from w w w. j av a 2s . co m import android.content.Context; import dagger.Module; @Module public class BaseModule { private final Context mAppContext; BaseModule(Context appContext) { mAppContext = appContext; } }