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.countly; //from www .ja v a2s .c o m import ly.count.android.api.Countly; /** * Created by Qiao on 2015/1/5. */ public class CountlyUtils { public static void addEvent(CountlyEvent event, String value) { Countly.sharedInstance().recordEvent(event.toString() + "," + value); } }