Back to project page RoboSpringExt.
The source code is released under:
Apache License
If you think the Android project RoboSpringExt 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 org.robospring.ext; // ww w .j ava 2s . c o m import android.app.Service; import org.robospring.RoboSpring; public abstract class RoboSpringService extends Service { @Override public void onCreate() { super.onCreate(); RoboSpring.autowire(this); } }