firebase-analytics

Header file (FirebaseCore/FirebaseCore.h) not found, despite importing Firebase.framework

一个人想着一个人 提交于 2019-12-02 07:57:41
I am trying to manually import and use the Firebase framework in my iOS application. I am starting off with the basic bare minimum Analytics framework (then I'll add the rest of the frameworks). I followed this tutorial in order to manually import the Google Firebase framework into my Xcode project. The problem is that I am still getting the following error: 'FirebaseCore/FirebaseCore.h' file not found I have imported the frameworks, imported the overall header file and have made sure that the files where actually copied to the project directory folder. I have set the -ObjC linker flag too.

Firebase Analytics not available

戏子无情 提交于 2019-12-02 05:33:40
问题 I can't use Firebase with iOS. I'm using Xcode 8.0 and Objective-C. I added all the necessary framework and the right code to my AppDelegate implementation. I added the ObjC to Other Linker Flags and I added the GoogleService-Info.plist but the App crashes with this error: 回答1: "FIRAnalytics is not available" is exactly the error that will occur when directly integrating the Firebase frameworks without using CocoaPods and not setting the -ObjC Linker flag. Make sure you set it properly: Add

Firebase First Open event is not correct

为君一笑 提交于 2019-12-02 03:46:34
I have integrated Firebase to my app and using it for some time. I was getting similar first open result as iTunesConnect until 2 weeks ago. For 2 weeks I am getting weird analytics. Even my daily new download is about 500-600, Firebase Analytics says I get 10-20 first open. I didn't change any settings in Firebase or didn't update the app. All same. What happened recently to Firebase? There was recently a bug on the iOS side of things -- it started sometime around the last week in January -- that was under-reporting first_open events. It has since been corrected (via a server-side fix), and

Firebase Audience Targeting on Count Operators

半城伤御伤魂 提交于 2019-12-02 02:58:21
I use Firebase Analytics & Audiences for event tracking & push notification campaigns. I want to target my app's users that did not have an in_app_purchase across their entire lifetime. I created the following tests in the Firebase Analytics Audiences dashboard, but could unfortunately not save & create the audiences: Test 2 below does not work with in_app_purchase Count < 1 . Test 3 does not work with in_app_purchase Count = 0 . I assume I am not the only one that want to grow their buyer segment. So, I am curious how one would be able to create this audience in Firebase (and target them

Firebase Analytics not available

江枫思渺然 提交于 2019-12-02 01:48:36
I can't use Firebase with iOS. I'm using Xcode 8.0 and Objective-C. I added all the necessary framework and the right code to my AppDelegate implementation. I added the ObjC to Other Linker Flags and I added the GoogleService-Info.plist but the App crashes with this error: "FIRAnalytics is not available" is exactly the error that will occur when directly integrating the Firebase frameworks without using CocoaPods and not setting the -ObjC Linker flag. Make sure you set it properly: Add the -ObjC linker flag in Other Linker Settings in your target's build settings. 来源: https://stackoverflow.com

Firebase - log events from server side cloud functions [duplicate]

二次信任 提交于 2019-12-02 00:19:47
问题 This question already has an answer here : Firebase analytics from remote REST API? (1 answer) Closed last year . We've developed a mobile app using Firebase and we want to add analytics. We want to add to the analytics several system events that are triggered from existing cloud functions. I do not see any way to log an event from a cloud function and the only way I see is from the client side. Is there a way we can log event from the server side ? 回答1: There is no server side logging for

Limit for custom parameters of custom Firebase Analytics events?

六眼飞鱼酱① 提交于 2019-12-01 22:31:04
问题 I didn't find this in the documentation - is there some limit on the number of custom parameter a custom event might have? The documentation does mention a limit of 25 user custom parameters, but what about event custom parameters - is there a similar limit? 回答1: Both event and user parameters are limited to 25. LogEvent method docs: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics#public-method-summary 回答2: I collect the information based on

Null User Id's recorded by firebase

妖精的绣舞 提交于 2019-12-01 22:20:40
问题 We are linking our firebase analytics data to BigQuery and upon analyzing found that the user id's are null for several users. In what scenarios can this happen? and what is the solution for the same. 回答1: The bad behavior was when the user_id property was populated with a value. The property user_id should be null except if you set it explicitly with a call to that function: android function: setUserId(...) ios function: setUserId(...) If you don't explicitly call setUserId , which is common

how to write Bigquery in new schema with replacing event_dim in old schema from Firebase analytics?

浪尽此生 提交于 2019-12-01 21:58:40
问题 The old BigQuery Export schema wise script is running.It is given below. But I want to replicate this code and write it according to new export schema as we Bigquery schema has been changed. Please help becasue in new BigQuery Export schema I don't find any other corresponding record against event_dim (event_dim is in according to old BigQuery Export schema). Here is link for BigQuery Export schema: click here SELECT user_dim.app_info.app_instance_id , (SELECT MIN(timestamp_micros) FROM

how to write Bigquery in new schema with replacing event_dim in old schema from Firebase analytics?

≯℡__Kan透↙ 提交于 2019-12-01 21:46:42
The old BigQuery Export schema wise script is running.It is given below. But I want to replicate this code and write it according to new export schema as we Bigquery schema has been changed. Please help becasue in new BigQuery Export schema I don't find any other corresponding record against event_dim (event_dim is in according to old BigQuery Export schema). Here is link for BigQuery Export schema: click here SELECT user_dim.app_info.app_instance_id , (SELECT MIN(timestamp_micros) FROM UNNEST(event_dim)) min_time , (SELECT MAX(timestamp_micros) FROM UNNEST(event_dim)) max_time, event.name,