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; /*from ww w. j a v a 2 s . c om*/ import com.activeandroid.ActiveAndroid; import com.akisute.yourconsole.app.dagger.DaggeredApplication; public class Application extends DaggeredApplication { @Override public void onCreate() { super.onCreate(); ActiveAndroid.initialize(this); } @Override public void onTerminate() { super.onTerminate(); ActiveAndroid.dispose(); } @Override protected Object[] getModules() { return new Object[]{ new AppModule() }; } }