flurry

Apple rejected my application because of Flurry [closed]

我的梦境 提交于 2019-12-04 15:41:37
My application is rejected today by apple. Their note is this: During our extended review we found that the app does in fact send the user's MAC address via the Flurry SDK. Sending the user's hardware identifier is not appropriate, and requires this feature to be removed to be considered for PLA 3.3.9 compliance. Please revise the binary to not send the MAC address, then resubmit for review. So I added Flurry's Privacy Policy url ( https://info.yahoo.com/privacy/us/yahoo/ ) into my application privacy policy url in iTunes connect. And then they replied this: Thank you for your patience during

Mobile analytics for android library [closed]

一世执手 提交于 2019-12-04 13:34:42
Closed . This question is opinion-based. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it can be answered with facts and citations by editing this post . Closed 5 years ago . I am working on android library and wondering which analytics solution would be the best for this purpose. I want to monitor: unique app installations / removals using my library memory consumption, number of background applications while doing some specific operations in my library crashes / exceptions custom events All these statistics should be easily grouped

How do I call an Objective-C method from Javascript in UIWebView?

微笑、不失礼 提交于 2019-12-04 05:30:15
问题 I'm developing a native iPhone app using Phonegap, so everything is done in HTML and JS. I am using the Flurry SDK for analytics and want to use the [FlurryAPI logEvent:@"EVENT_NAME"]; method to track events. Is there a way to do this in Javascript? So when tracking a link I would imagine using something like <a onClick="flurryTrackEvent("Click_Rainbows")" href="#Rainbows">Rainbows</a> <a onClick="flurryTrackEvent("Click_Unicorns")" href="#Unicorns">Unicorns</a> "FlurryAPI.h" has the

android Flurry integration with NDK app

匿名 (未验证) 提交于 2019-12-03 08:48:34
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: My Android application comprises two parts: frontend written in Java and game written in C++ using NativeActivity NDK stuff. I have a problem integrating Flurry into my application. Flurry works fine from within Java part, but crashes from within C++. More specifically, call jni_env->FindClass("com/flurry/android/FlurryAgent"); results in ClassNotFoundException . jni_env variable is not broken because I am able to get some Intent params using it. FlurryAgent.jar is added to libs dir and into .classpath . I've even checked 'Order and Export'

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

匿名 (未验证) 提交于 2019-12-03 08:48:34
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: 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&apiKey=APIKEY&startDate=STARTDATE

Flurry integrations with Android App gives an error “Could not find class 'com.flurry.sdk.i', referenced from method com.flurry.sdk.hu.a”

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-03 06:14:10
This is what I've tried so far: public class ScoreUpApp extends Application { private static ScoreUpApp scoreUpDataCache; public static final String TAG = "MyApp"; @Override public void onCreate() { // TODO Auto-generated method stub super.onCreate(); // configure Flurry FlurryAgent.setLogEnabled(true); // init Flurry FlurryAgent.init(this, "V88JVYGFF7QX5D9RYZG2"); } } This is what the error I get in Logcat : 03-17 14:06:41.924: E/dalvikvm(30175): Could not find class 'com.flurry.sdk.i', referenced from method com.flurry.sdk.hu.a 03-17 14:31:36.694: W/dalvikvm(31798): VFY: unable to resolve

Use FlurryAgent.onEvent(String eventId, Map<String, String> parameters)

三世轮回 提交于 2019-12-03 05:49:20
Please anybody tell how to use FlurryAgent.onEvent(String eventId, Map<String, String> parameters) in an android activity to track events with flurry ? The simplest use of onEvent is without parameters. Let's say we're writing a game and you want to track how many people start the game and how many complete it. You would then have: FlurryAgent.onEvent("Started game"); and FlurryAgent.onEvent("Won game"); at appropriate points in your code. If you want to know more information about the state of the application when an event occurred, you can add parameters to track additional information like

how to integrate flurry in ios using swift language

匿名 (未验证) 提交于 2019-12-03 02:30:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I want to integrate flurry in ios using swift language. I added the flurry sdk's two files : flurrylib.a and flurry.h and then entered my api key in project TestProject4-Bridging-Header.h #import "Flurry.h" 回答1: I had the same issue and adding a bridging header worked for me. Here are the steps I followed. Note: If you already have a bridging file, skip the steps 2 to 4 I dragged the Flurry folder to my Swift iOS project in XCode. I created a bridging header file by creating a new Objective-C header file (in XCode menu it's File/New/File/iOS

Cocoapods - Flurry & TestFlight - Undefined symbols for architecture

…衆ロ難τιáo~ 提交于 2019-12-02 19:08:20
I'm upgrading my project to use Cocoapods and when I try building my project for an iOS device or for a simulator I get: Undefined symbols for architecture armv7: "_OBJC_CLASS_$_TestFlight", referenced from: objc-class-ref in PhotoPreviewViewController.o "_OBJC_CLASS_$_Flurry", referenced from: objc-class-ref in MyAppDelegate.o objc-class-ref in InitialSetupViewController.o objc-class-ref in InitialDownloadViewController.o objc-class-ref in HistoryViewController.o ld: symbol(s) not found for architecture armv7 clang: error: linker command failed with exit code 1 (use -v to see invocation)