has anyone used
Flurry for Analytics on an Android app made with AppGameKit?
the page says to integrate it like this:
Basic Setup in 5 minutes
You can gain deep insight into your customer's behavior very quickly and with little effort using Flurry's Analytics service.
1. Download the Flurry Android SDK
2. Add the FlurryAgent.jar to your classpath
3. Configure you AndroidManifest.xml to have access to the Internet and optionally location
4. Incorporate the following three lines of Flurry code:
import com.flurry.android.FlurryAgent;
@Override
protected void onStart()
{
super.onStart();
FlurryAgent.onStartSession(this, "YOUR_API_KEY");
}
@Override
protected void onStop()
{
super.onStop();
FlurryAgent.onEndSession(this);
}
simple right? right up until step 4. Something to do with the way I don't know anything about Java
what file should I put the code in?