Back to project page ExampleChopping.
The source code is released under:
Apache License
If you think the Android project ExampleChopping 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.chopping.example; /* www . j a v a 2 s.c om*/ import android.app.Application; import com.chopping.net.TaskHelper; public final class App extends Application { @Override public void onCreate() { super.onCreate(); init(); } private void init() { Prefs.createInstance(this); TaskHelper.init(getApplicationContext()); } }