0

I am interested in integrating Flurry into my Mono for Android app. To do so, I followed the guide found Here. Basically I created an android class library, then added the flurry 3.2.1 .jar file to the project (not inside the resources folder) and set its build action as AndroidJavaLibrary. Next I pasted the FlurryClient.cs file(found in the link) and referenced the whole project in my app. All is well except that my flurry dashboard is not reporting any activity (0 sessions), even after a whole week of testing, while my windows phone version of the app is reporting fine. So it seems that no events are being sent to Flurry for some reason.

In addition, during app start-up, the output windows in Visual Studio prints the following line:

E/FlurryDataSender(14460): --onServerError xxxxxxx-xxxxxxx-xxxxxxx-xxxxxxx-xxxxxxx

(xxxxxxx replaces actual number sequence)

Does anyone have an idea why this could be happening?

user123
  • 632
  • 1
  • 6
  • 22
  • Did you found the reason? I have the same issue. – Maxim Korobov Aug 12 '13 at 12:37
  • No, I contacted Flurry support but they never replied. In the end I just released the app without analytic services. If you ever solve it, please let me know. – user123 Aug 12 '13 at 14:14
  • What did you try? My code: var client = new FlurryClient ("My key"); client.SetLogEnabled (true); client.OnStartActivity (this); client.LogEvent ("test + " + DateTime.Now); – Maxim Korobov Aug 15 '13 at 07:40
  • I successfully received basic (non-timed) events. FlurryClient make a log event: `[FlurryDataSender] --onReport f7b6c49b-3c1b-4aa9-bfd0-1d015d65a67a sent. HTTP response: 200 : OK` – Maxim Korobov Aug 19 '13 at 10:01
  • What did you change to fix this problem? my code is identical to yours except I do not have the `client.SetLogEnabled (true);` line. – user123 Aug 19 '13 at 10:45
  • I subclass all activities, add `client.OnStartActivity (this)` to `onStart()` method and `client.OnStopActivity (this)` to `onStop()` method. – Maxim Korobov Aug 19 '13 at 12:08
  • My app has only one activity, and I do have `client.OnStartActivity (this)` and `client.OnStopActivity (this)` inside `onStart()` and `onStop()`, so it is still no different from yours... – user123 Aug 22 '13 at 08:36

0 Answers0