Back to project page droidBBpush.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project droidBBpush 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.arg3.examples.droidbb; //from ww w .j a v a 2 s. c o m import android.app.Application; import java.util.ArrayList; import java.util.List; import dagger.ObjectGraph; /** * Created by ryan on 2014-09-25. */ public class MainApplication extends Application { private ObjectGraph mObjectGraph; private void setupModules() { mObjectGraph = ObjectGraph.create(getModules().toArray()); } protected List<Object> getModules() { List<Object> modules = new ArrayList<Object>(); modules.add(new MainModule(this)); return modules; } public void inject(Object object) { mObjectGraph.inject(object); } public ObjectGraph getObjectGraph() { return mObjectGraph; } @Override public void onCreate() { super.onCreate(); setupModules(); } }