Documentation for embedding flurry code in BlackBerry application
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.
精彩评论