firebase-analytics

What APIs and Credentials are really needed for Firebase Analytics?

我是研究僧i 提交于 2019-12-12 03:44:46
问题 After making an app for Firebase Analytics in Firebase Console (as mentioned here: https://firebase.google.com/docs/android/setup) in old developers console (https://console.developers.google.com) for the respective project we get some APIs enabled automatically and some credentials: API keys: Server key (auto created by Google Service) Android key (auto created by Google Service) OAuth 2.0 client IDs: Android client for xxx.xxx.xxx (auto created by Google Service) Web client (auto created by

Why Firebase 4.6.0 (ios) gave me “Undefined symbols for architecture armv7”

百般思念 提交于 2019-12-11 21:31:34
问题 I update today firebase (ios) from 4.5.0 to 4.6.0 . With 4.5.0 it's was working well however with 4.6.0 (to the last 4.11.0) when I compile I have now this error : [DCC Error] E2597 Undefined symbols for architecture armv7: Error: "_OBJC_CLASS_$_SKPaymentQueue", referenced from: objc-class-ref in C:\Dev\Alcinoe\lib\ios\firebase\FirebaseAnalytics.framework\FirebaseAnalytics(FIRAInAppPurchaseTransactionReporter_780d0e22c66d661ab61b3e74b77b38bd.o); Error: "_OBJC_CLASS_$_SKProductsRequest",

How to implement Firebase Analytics implementation for AppleTV (tvOS)?

佐手、 提交于 2019-12-11 15:08:27
问题 Currently, we have implemented Google Analytics for AppleTV (tvOS) via Measurement Protocol i.e. using batch end point Google Analytics - Measurement Protocol. Now, Google Analytics is sunsetting. Alternative as suggested by Google is Google Analytics for Firebase. But, that implementation is for Mobile Platform. Does anybody know any workaround that I can use on Firebase Platform in order to report analytics from tvOS using some sort of Firebase API? 来源: https://stackoverflow.com/questions

Firebase BigQuery Monthly Event Counts

时间秒杀一切 提交于 2019-12-11 14:44:34
问题 in an effort to fast-track a monthly comparison between Flurry and Firebase event-reporting, I wrote this simple script below to get the monthly 1) Event Count and 2) Count of Unique Users that triggered these events. In theory the data I get from BigQuery (linked to the same Firebase account), should give the same output as the Firebase Analytics Console below. I only added a random example Screenshot to indicate which events I am talking about. # My Standard SQL - Script SELECT event.name

Firebase Analytics - How to add Screen Names and Log Events

前提是你 提交于 2019-12-11 14:13:10
问题 I want to add Screen Name and Log Event to Firebase's Analytics. I have tried below code, but I'm unable to see the Event & Screen Name in Firebase's Console. //For Logging Event Bundle bundle = new Bundle(); bundle.putString("custom_param",nameEditText.getText().toString()); mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.GENERATE_LEAD, bundle); //For Adding Screen Name mFirebaseAnalytics.setCurrentScreen(this, "Visitor Entry", VisitorEntryActivity.class.getSimpleName()); I have already

Firebase analytics are not appearing in the dashboard

拜拜、爱过 提交于 2019-12-11 13:32:13
问题 I have integrated Firebase Analytics by following their documentation And I have also downloaded their sample app, in both the cases I am getting these message in the logs and in both the cases I am not getting the analytics data. In log I am getting this message is this ok? com.google.firebase.quickstart.analytics V/FA: Session started, time: 918306437 com.google.firebase.quickstart.analytics D/FA: Logging event (FE): _s, Bundle[{_o=auto}] com.google.firebase.quickstart.analytics V/FA: Using

Bigquery new schema- Session-Duration Distribution-table in Firebase

家住魔仙堡 提交于 2019-12-11 12:53:42
问题 Here is result how I want to have This is the Bigquery according old schema and is working fine in old data source table. Here is the query according to old schema. This is supposed to give to session-duration wise distribution which means it will give session-duration(seconds) wise number of sessions(Ex. it is in the image bleow). select (case when engagement_time1 > 0 and engagement_time1 <= 30 then "0-30" else (case when engagement_time1 > 30 and engagement_time1 <= 60 then "31-60" else

Firebase vs Google Analytics

天大地大妈咪最大 提交于 2019-12-11 09:14:15
问题 I have installed Firebase to my Android and iOS apps, I can check the stats on computer, but can't check them on my iphone Google analytics app. Is there any way or app where can I check the stats or do I need to install also Google analytics to my apps as well? 回答1: When you use Google Analytics for Firebase (formerly known as Firebase Analytics) the analytics results show up in the Firebase console. They do not (currently) show up in the Google Analytics dashboard. 回答2: You can have a

Could not build module Firebase

若如初见. 提交于 2019-12-11 07:38:15
问题 I have been trying to wire up Firebase analytics into a Objective C/Swift project. I have followed the instructions properly. My search paths are set. My linker flags is set to -ObjC. I can get the project to compile properly. As soon a I @import Firebase and build, I get an error that says cannot build Firebase module. When I look into the logs I see there is a parse issue building Firebase analytics and Firebase Core. I have wired this into three other projects fine not using cocoa pods.

Firebase analytics network connections (url, port, ip addresses)?

拟墨画扇 提交于 2019-12-11 07:36:54
问题 Our company will setup mobile devices which use private mobile network (special sim card which blacklist all urls and allow for only specific urls). (Our company has a firewall and it is preventing our enterprise mobile app from sending analytic events to Firebase via the SDK.) We have a scenario to use Firebase-analytic to log user events. So far I am trying to find what are the urls or IP addresses which device will request to firebase-analytics when logging but I could not find any network