Back to project page Buckets.
The source code is released under:
Apache License
If you think the Android project Buckets 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 ru.noties.buckets.sample; //from w w w .j a v a2s . c o m import android.app.Application; import ru.noties.buckets.Buckets; import ru.noties.debug.Debug; /** * Created by Dimitry Ivanov (mail@dimitryivanov.ru) on 28.12.2014. */ public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); Debug.init(true); Buckets.getInstance().init(this); } }