Questions tagged [flurry]

Flurry is a free, commercial service, owned by Yahoo, which provides monetization solutions for app publishers, anonymous usage statistics of apps and error/crash reports for apps on mobile devices.

Flurry, owned by Yahoo, provides a set of services and SDKs aimed at mobile developers and app publishers.

Flurry provides detailed usage statistics on apps and allows developers use a rich set of tools and resources to gain a deep level of understanding about their users' behaviors. Developers can set up advanced analysis of complex events, with metrics, segments and funnels to better track users’ habits and performance.

Flurry also provides "Yahoo App Publishing"; a set of tools that provides a flexible ad-serving platform that is easy to set up and use, enabling developers to maximize ad revenue and engage actively with users.

Learn more:

684 questions
7
votes
1 answer

Android app uninstallation event for analytics

I wonder what are the ways/patterns to detect app uninstallation for any kind of analytics on android? I know the limitations of ACTION_PACKAGE_REMOVED intent - not received by application being removed. I am using flurry at the moment and have also…
mkorszun
  • 4,461
  • 6
  • 28
  • 43
7
votes
1 answer

How to add flurry into android studio project?

How can I add flurry into my android studio project, I haven't done this before, so I am not entirely sure where to add the files? I have FlurryAnalytics.jar and how to use in my app? thanx
Bohrend
  • 1,467
  • 3
  • 17
  • 26
7
votes
1 answer

Flurry logging events not always

I track my Application with flurry. At the flurry site i see a lot of events but i think flurry misses a lot of events messages. I use the android flurry sdk 3.2.2 So i used a proxy to watch the traffic of my phone. The first time a start a session…
Marc
  • 141
  • 1
  • 7
7
votes
2 answers

SD HTTP RESPONSE CODE:200 error with Flurry

I am using latest sdk of Flurry Analytics v3.2.2 But i got below error TOAST when i run my application . SD HTTP RESPONSE CODE:200 i don't know from where it comes and how. I goggled it but got nothing. Please tell me if anyone got this type of…
Dhruvil Patel
  • 2,910
  • 2
  • 22
  • 39
7
votes
1 answer

Flurry Agent causing a CalledFromWrongThreadException exception on Android 2.3.4

When I use the FlurryAgent on a 2.3.4 device I get the following exception: E/AndroidRuntime: FATAL EXCEPTION: FlurryAgent android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch…
Tom Susel
  • 3,397
  • 1
  • 24
  • 25
6
votes
2 answers

Proper appDelegate method for Flurry startsession?

Flurry docs recommend placing the startSession call in applicationDidFinishLaunching:. Two problems with this... - (void)applicationDidFinishLaunching:(UIApplication *)application { [FlurryAnalytics startSession:@"AWESOMEAPIKEY"]; //…
Old McStopher
  • 6,295
  • 10
  • 60
  • 89
6
votes
1 answer

Can you submit data from a web page to Flurry Analytics?

We have developed an iPhone, Android, and BlackBerry app for our product. We also have an ASP.NET MVC mobile website that provides the same content as the native apps for any of the sorry folks who don't have a device that supports one of the…
jaminto
  • 3,895
  • 3
  • 32
  • 36
6
votes
2 answers

How long for custom events to show up?

I am attempting to add analytics tracking to an iPhone application using Flurry. I already have Flurry wired up, and it seems to be tracking sessions and usages just fine. However, I just now tried to add a custom event log, but whenever I view the…
Jason Whitehorn
  • 13,585
  • 9
  • 54
  • 68
6
votes
1 answer

Flurry analytics crashing with Windows Phone 7

I've integrated Flurry (http://www.flurry.com/) into my phone 7 app. The only code needed is this line in application launching FlurryWP7SDK.Api.StartSession(ApiKeyValue); However, as soon as that line is hit the application crashes with a…
Mac
  • 2,312
  • 14
  • 25
6
votes
1 answer

How is flurry able to detect when a user installs an ios app from a provided link?

Flurry can give you a URL that redirects to your app on the App Store, and they can tell you how many people install the app by using that URL. How do they do this?
Kyle
  • 21,377
  • 37
  • 113
  • 200
6
votes
3 answers

How to integrate Flurry analytics into iOS app

I have Flurry.h and libFlurry.a added to my project from the Flurry 4.1 SDK. In my app delegate I have the following in didFinishLaunchingWithOptions. [Flurry startSession:@"[apikey]"]; I've also added [Flurry logEvent:@"callAPIPath"]; in the…
Michael Luton
  • 1,058
  • 11
  • 29
5
votes
2 answers

Flurry analytics not reporting any updates on android

In my application i have added flurry analytic but even after days of adding it. i don't see any updates on the dashboard. could any one help me on this. thanks in advance, public static void StartSession(Context context) { …
cavallo
  • 4,414
  • 9
  • 39
  • 61
5
votes
2 answers

Recommend a server-side event logging system for iOS

We're using Flurry to track events made in our iOS app (similar to Google Analytics, Mixpanel). It's great, but there's no way to get the raw dump of all the events that have been fired - all these analytics services will aggregate them for you. …
Jared Friedman
  • 4,379
  • 3
  • 18
  • 9
5
votes
1 answer

CocoaPods error while doing "pod install": [!] Invalid `Podfile` file: uninitialized constant Pod::Podfile::Flurry.

I am trying to install Flurry for React Native using the npm React Native Flurry Analytics Here is my pod file: target 'myApp' do pod Flurry-iOS-SDK/FlurrySDK end and running pod install in the /ios directory of my React-Native project i…
Michael Campsall
  • 4,325
  • 11
  • 37
  • 52
5
votes
3 answers

Flurry Login Requests.Session() Python 3

So I had this question answered before here. However, something on the Flurry website has changed and the answer no longer works. from bs4 import BeautifulSoup import requests loginurl = "https://dev.flurry.com/secure/loginAction.do" csvurl =…
Nefariis
  • 3,451
  • 10
  • 34
  • 52