开发者

Documentation for embedding flurry code in BlackBerry application

开发者 https://www.devze.com 2023-03-20 02:22 出处:网络
I would like to know if there is any documentation for implementing flurry in a BlackBerry app. I just have the jar file and have no knowledge of coding the same. 开发者_JAVA技巧Please help.FlurryAgen

I would like to know if there is any documentation for implementing flurry in a BlackBerry app. I just have the jar file and have no knowledge of coding the same. 开发者_JAVA技巧Please help.


FlurryAgent.onStartApp(yourKey); - When app is launched

FlurryAgent.onPauseApp(); - When app goes into background

FlurryAgent.onDestroyApp(); - When app is closed

Hashtable fl = new Hashtable();
fl.put(someKey, someValue);
FlurryAgent.onEvent(someEventTitle, fl);

-- When you would like to store info about an event. For instance, search terms, location used, etc.


The basic informations are available in the download zip of flurry itself.

0

精彩评论

暂无评论...
验证码 换一张
取 消