Back to project page FxExplorer.
The source code is released under:
Apache License
If you think the Android project FxExplorer 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 info.breezes.fxmanager; //w w w. j av a2s. co m import android.app.Application; import info.breezes.toolkit.log.Log; import info.breezes.toolkit.log.SystemLogHandler; import ly.count.android.api.Countly; /** * Created by Qiao on 2014/12/30. */ public class FxApplication extends Application { @Override public void onCreate() { super.onCreate(); Countly.sharedInstance().setLoggingEnabled(true); Countly.sharedInstance().init(this, "http://countly.breezes.info", "74ad07ed8b677d7e7d8516ff8a76cfb9b15586a4"); } }