Back to project page YourConsole.
The source code is released under:
MIT License
If you think the Android project YourConsole 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.akisute.yourconsole.app.dagger; //from w w w . j a v a 2 s . c om import android.app.Activity; import android.app.Fragment; public abstract class DaggeredFragment extends Fragment { @Override public void onAttach(Activity activity) { super.onAttach(activity); DaggeredApplication application = (DaggeredApplication) activity.getApplication(); application.inject(this); } }