Back to project page android-unittesting.
The source code is released under:
Apache License
If you think the Android project android-unittesting 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.hp.mvp; //from w w w . ja v a 2s. c o m import android.app.Application; import dagger.ObjectGraph; /** * Created by david on 11/23/14. */ public class MainApplication extends Application { private ObjectGraph objectGraph; @Override public void onCreate() { super.onCreate(); objectGraph = ObjectGraph.create(new DataModule(this)); } public ObjectGraph getObjectGraph() { return this.objectGraph; } }