Questions tagged [flurry-analytics]

158 questions
0
votes
1 answer

I need help to understand my data and to personnalize Flurry analytics

I need help to understand my data and to personnalize Flurry analytics. How can I have a view : The new user I have acquired on Saturday, if the open the app on Sunday, and again on Monday, and again on Tuesday…. If I have 54,5 active…
Léa
  • 11
  • 1
0
votes
1 answer

Does Flurry Reporting API show retention in country-dimension?

So flurry has provided its reporting API tool, however only with this rollingrate and returnrate, however when we trying to grab metrics for specific region, it's unable to achieve. Does flurry officially support the country-dimension reporting API…
Yue
  • 1
0
votes
1 answer

How Can I Compare Funnel Steps of Different App Versions In Flurry

Is it possible to compare a funnel for two different versions of the product at the same time? for example, I would like to compare the funnel steps of the onboarding phase in our last two versions side by side
Arash
  • 3,013
  • 10
  • 52
  • 74
0
votes
2 answers

Integrate Flurry Analytics to Apple Watch

I am trying to integrate Flurry Analytics into my Apple watch app. My app is a standalone app that does not have an iPhone companion. I saw an article on Yahoo Developer that gave instructions on it but it is over 5 years old now. I followed all of…
0
votes
1 answer

Flurry Integration Error: Cannot find symbol method init()

In my application class, in OnCreate(), I've added the following bit of code: new FlurryAgent.Builder() .withDataSaleOptOut(false) //CCPA - the default value is false .withCaptureUncaughtExceptions(true) …
A1016
  • 21
  • 3
0
votes
0 answers

Flurry - Flurry sample app keep replace userid in user journey

I try to understand flurry by creating sample project and add new API Key to FlurryAnalyticsSampleApp-Android with no custom any parameter. I generated event from several devices. Once data logged to user journey menu it keep replace userid 1…
0
votes
0 answers

Flurry push notifications on IOS, Not able to upload certificate

Trying to implement push notifications with Flurry for our app we are getting the flowing message: "Could not save push notification credential ValidationFailedException: Certificate environment mismatch. Your certificate for unknown does not match…
Erez
  • 1,933
  • 5
  • 29
  • 56
0
votes
0 answers

Flurry View Setting to show data in Table view

Is there any way through which we can get the event details in a tabular format like if I want to see what action the users performing frequently, any specific user data for the user journey etc. rather than viewing each events separately?…
harkesh kumar
  • 833
  • 2
  • 13
  • 35
0
votes
1 answer

Flurry Analytics access in China

We all know that Google and Google Analytics are blocked from app users in China. But how about flurry? Can i collect analytics data from my Mobile iOS and Android App users living in China?
0
votes
1 answer

Registering iap purchase analytics event in Flutter using Flurry analytics

I am new to Flurry analytics, and from the looks of the docs they have for both iOS and Android, there is a support for registering purchase events with a dedicated method on each platform separately. But with flutter plugin they have, this option…
Aleksandar
  • 1,457
  • 13
  • 30
0
votes
1 answer

Is there a recent or known issue with the #flurry Data Download?

Our #flurry App Data Download appears bugged. We requested raw data for analytics recently Oct, 2rd 2020, but the result was not enough than our expected data amount. there are only a few raw data. for example we compered Arbitrary period old which…
tochi-suke
  • 11
  • 3
0
votes
1 answer

Is there a recent or known issue with the #flurry Dashboard?

Our #flurry App Activity dashboard appears bugged. It only queries data from the first of every month, independent of the date range requested. Is this a known issue or recent bug? Everything was working fine just five days ago, and we haven't…
0
votes
0 answers

Flurry iOS test Push Notification fails with UnrecognizedDeviceId

Trying to integrate the Flurry Push Notification service on iOS. When testing the integration I am getting Unable to send test push. Reason: UnrecognizedDeviceId. See troubleshooting documentation. I am using the IDFA/IDFV Things I have already…
0
votes
1 answer

Api request IOS using flurry api

I have the following code that makes an API request to a flurry.com API endpoint and decodes the request. let url = URL(string: bookStarRateDomainUrl)! let task = URLSession.shared.dataTask(with: url, completionHandler: { (data, response, error)…
Chris Hansen
  • 7,813
  • 15
  • 81
  • 165
0
votes
0 answers

withSessionContinueSeconds method doesn't work in Flurry

I have the following code: let builder = FlurrySessionBuilder.init() .withAppVersion(appVersion) .withLogLevel(FlurryLogLevelAll) …