flurry

My app was just rejected for using the Ad support framework. Which library is responsible?

浪子不回头ぞ 提交于 2019-12-27 16:26:07
问题 This was simply an update that didn't change anything to do with the rejection reason. Here is the response from the resolution center: Reasons Program License Agreement PLA 3.3.12 We found your app uses the iOS Advertising Identifier but does not include ad functionality. This does not comply with the terms of the iOS Developer Program License Agreement, as required by the App Store Review Guidelines. Specifically, section 3.3.12 of the iOS Developer Program License Agreement states: "You

Linker command fail, exit code 1 with Flurry

巧了我就是萌 提交于 2019-12-25 07:59:54
问题 When I import Flurry as per the instructions here: https://developer.yahoo.com/flurry/docs/integrateflurry/ios/ I get the following error after following all the instructions and trying to run: I have tried the following after much research: Check my Compile Source in Build Phases - all was OK 'Clean'and re-run - Nothing Deleting and re-importing - No Good Checking to see if my riding header is exposed in Build Settings - all was OK The weird thing is when I create a brand new project and

Flurry - timed event questions

爷,独闯天下 提交于 2019-12-24 01:18:51
问题 I have some questions related to timed events from Flurry: 1). If I'm using logEvent (String eventId, boolean timed) to log a timed event and never call endTimedEvent(String) , what will happen with this event ? Will it ever be logged - maybe at the end of the session ? 2). If I call once logEvent (String eventId, boolean timed) and twice endTimedEvent(String) what will happen with the second endTimedEvent call? 回答1: According to Flurry iOS 4.3.0 documentation: If the app is backgrounded

Recording events with Flurry after app was launched due to a monitored region being entered

橙三吉。 提交于 2019-12-23 23:48:28
问题 The scenario is as follows. I have an iOS app that uses the CLLocationManager's region monitoring feature to notify the app when a predefined geographic region is entered. The way region monitoring works, the app can be notified of a user entering a region, even if the app was previously terminated. Basically, the operating system will launch the app (without bringing it to the foreground), when the region is entered, and gives the app a chance to respond to the region being entered. What I

Maxiumum number of custom events in Flurry analytics?

為{幸葍}努か 提交于 2019-12-23 12:55:33
问题 What is the maximum number of custom events you can report per session with Flurry analytics? 回答1: The number of events you can report per session in Flurry is 1000. I asked this question to Flurry support, as I couldn't find it elsewhere (and none of the answers here really answered the question). They answered and also sent me a short document titled "Flurry Methodology and Best Practices" that contained, among other things, this summary: 300 unique events per app 1000 events max per

What is this “uncaught” seen in event list in flurry site?

五迷三道 提交于 2019-12-23 12:07:59
问题 In flurry site, in Event logs session instead of events sometimes "uncaught" is showing .Can anyone tell what does it means ? Is it any error from app side? [all events are displayed in site but in some sessions it shows one or two events then uncaught] 回答1: If you are on the latest Flurry SDK version, which has the errors beta enabled, then the uncaught would appear under event logs, which is normal. 回答2: You need to set setCaptureUncaughtExceptions as false where you're configuring flurry :

Flurry: if flurry events added without start/end session, will it show on flurry site?

倾然丶 夕夏残阳落幕 提交于 2019-12-23 04:30:58
问题 If flurry events are added in an activity without adding startsession / endsession in onStart/onStop will it log on the flurry site ? Previous activity is having startsession / endsession in its onStart/onStop. Can anyone help? 回答1: Flurry will not consider an activity if it doesn't have a call to onStartSession. So long as there is any Context that has called onStartSession but not onEndSession, the session will be continued. This also means that Events will not be logged for that particular

Is there a way to get reported User ID from Flurry API?

心不动则不痛 提交于 2019-12-22 08:53:32
问题 I have an iOS game using Flurry, so I'm sending to Flurry unique IDs for each player trough [Flurry setUserID:@"USER_ID"] and after some hours I'm getting this ID's from "Flurry Page >Events > Event Logs > Download CSV" to tie a user in my internal systems (as Flurry User ID is it evil? indicate); but this is a manual process and take a lot of time. Is there a way to get this Event Logs from Flurry API? I'm currently using: http://api.flurry.com/eventMetrics/Event?apiAccessCode=APIACCESSCODE

Unable to upload iOS update after adding Flurry Analytics? Error: Your app can’t contain standalone executables or libraries

。_饼干妹妹 提交于 2019-12-22 05:23:35
问题 In my Swift iOS application I've just added Flurry Analytics by creating a briding-header.h and importing Flurry.h . I then added SystemConfiguration.framework , CFNetwork.framework , and Security.framework . I then added libFlurry_6.5.0.a via Targets -> Build Phases -> Link Binary with Libraries after instruction from a Stack Overflow question because it wouldn't build. After archiving the app I tried to upload it and received this error: ERROR ITMS-90171: “Invalid Bundle Structure - The

Can Flurry analytics provide average of integer information?

…衆ロ難τιáo~ 提交于 2019-12-21 21:39:54
问题 I need to integrate Flurry with Android and want to know how long (in minutes) user will be staying in main screen. Is it possible to get such analytic using Flurry? When I checked Flurry, it gave me the statics on hit counts on a specific screen. What I want to know is the average time spent by user in main screen. Kindly help in this regard. 回答1: This can be accomplished through a timed event. Simply call one of the following methods to start the timed event. In your scenario this should be