Skip to content

Instantly share code, notes, and snippets.

@Bisera
Last active December 18, 2015 06:49
Show Gist options
  • Save Bisera/5742552 to your computer and use it in GitHub Desktop.
Save Bisera/5742552 to your computer and use it in GitHub Desktop.
FlurryAgent.setLogEnabled(true);
FlurryAgent.setLogLevel(2); //verbose
//if you haven't already added the AdUnityListener do so to see whether the ads are received or not
FlurryAds.setAdListener(new AdUnityListener() {
public void spaceDidReceiveAd(String adSpaceName)
{
Log.d(kLogTag, "spaceDidReceiveAd");
}
public void spaceFailedToReceiveAd(String adSpaceName)
{
Log.d(kLogTag, "spaceFailedToReceiveAd");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment