firebase-analytics

Error: cannot access zzbgl

不打扰是莪最后的温柔 提交于 2019-11-28 13:55:19
I am developing an application and I am getting the following error: error: cannot access zzbgl class file for com.google.android.gms.internal.zzbgl not found I know there's a question here in StackOverflow with the same error that I'm getting posted 4 days ago but the answer did not help in my case. (I am talking about this one ) The error appeared just right after setting Firebase Analytics in my project. My build.gradle (Module: app) file is this: buildscript { repositories { maven { url 'https://maven.fabric.io/public' } } dependencies { classpath 'io.fabric.tools:gradle:1.+' } } apply

Firebase: Dashboard / Audiences probable bug?

為{幸葍}努か 提交于 2019-11-28 11:08:27
问题 Ok I'm pretty new to firebase and analytics but I'm seeing some kind of incongruency between what the dashboard is showing me and what the Audiences tab shows me. Dashboard: and the Audiences (predefined Audience All Users): Any ideas if I'm looking at this the wrong way or if it's just a bug? Thanks!! 回答1: The threshold of 10 is actually based on Advertising Identifiers (and not Analytics "users"). And so, if your set of 13 Monthly Active Users has fewer than 10 Advertising Identifiers among

Does Firebase Analytics Work Offline?

一世执手 提交于 2019-11-28 10:57:41
I know Firebase in general works offline, and syncs whenever an opportunity. Does the same thing apply to Firebase-Analytics for mobile (Android, iOS) apps? If yes (or partially yes) - how long can the user be offline? Yes, events are stored locally and uploaded when the radio is turned on. Events which arrive more than 72 hours late will be ignored by our server. djabi Firebase Analytics will store logged evens locally on the device (online or offline). When its time to upload the data and the devices has network connection Firebase Analytics will batch the data in as fewer uploads as

Is there any REST API to send data to firebase analytics

妖精的绣舞 提交于 2019-11-28 10:13:54
问题 Firebase console gives good analytics data in one dashboard. Is there any API by which I can push my analytics data from my own portal to Firebase analytics and see that analytics data in firebase analytics dashboard? 回答1: No, this is not possible at the moment. You need one of the mobile SDKs (iOS or Android) to compose the data. 来源: https://stackoverflow.com/questions/38232464/is-there-any-rest-api-to-send-data-to-firebase-analytics

No static method zzUr() in Firebase when I try to use Analytics with Notifications

人走茶凉 提交于 2019-11-28 08:56:49
I'm starting to use the Firebase Cloud Messaging. I have only the example code of the guide to use the Notifications and Analytics. If I don't install Analytics notifications works fine, but when I add in gradle the Analytics I have get this error when I try to send a notification: java.lang.NoSuchMethodError: No static method zzUr()Landroid/content/Intent; in class Lcom/google/firebase/iid/FirebaseInstanceIdInternalReceiver; or its super classes (declaration of 'com.google.firebase.iid.FirebaseInstanceIdInternalReceiver' appears in /data/app/com.myapp.newapp-2/base.apk) at com.google.firebase

Firebase trace showing wrong median time latency?

允我心安 提交于 2019-11-28 06:28:48
问题 I am adding Firebase performance trace in my app and below image is data for last 24 Hrs As you can see the Median is 647ms , where as 95% time latency is 14.81s and for 5% it is 460ms . How can the median be 647ms , it should be near around 14 sec? Am I missing something here? Edit - In below image data is for last 7 days As you can see in last 24 Hrs I had data where 95th percentile was 14.81s , but how can in last 7 days graph there is no mention of the 14 secs trace? all traces are below

How does Firebase Analytics define a “user” (for purposes of Audience)?

一曲冷凌霜 提交于 2019-11-28 00:20:29
I've been told that, "Once a user is in an audience, they will forever be in that audience". I'm curious how long is "forever," in the context of a user? For instance, if a user changes phones, or uninstalls the app and then re-installs later, does the user persist across those transitions, or is each of those a separate user? And if I have multiple apps in one Firebase project, does the user appear in the same audience in all apps within that project? What does Firebase Analytics consider to be a unique/new user? One use-case I'm looking to try with Audience, is I want an audience of

FireBase error -9806, SSL error -1200

ⅰ亾dé卋堺 提交于 2019-11-27 23:17:37
问题 I'm using the new FireBase SDK introduced at I/O 2016 and I'm getting this error after integrating with my app. This happens at app launch. 2016-08-06 06:28:06.237 MyApp[49084:2511094] CFNetwork SSLHandshake failed (-9806) 2016-08-06 06:28:06.238 MyApp[49084:2511094] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9806) 2016-08-06 06:28:06.453 MyApp[49084:2511094] CFNetwork SSLHandshake failed (-9806) 2016-08-06 06:28:06.454 MyApp[49084:2511094] NSURLSession

Discrepancies on “active users metric” between Firebase Analytics dashboard and BigQuery export

筅森魡賤 提交于 2019-11-27 22:31:52
问题 According to Firebase Analytics docs (https://support.google.com/firebase/answer/6317517#active-users), the active number of users is the number of unique users who initiated sessions on a given day. Also according to the docs, every time a session is started an event with session_start name is sent. I am trying to get that metric using BigQuery's export, but my query is giving me different results (15636 on BigQuery, 14908 on FB analytics) I have also tried converting to different timezones

Remove firebase analytics from android app completely

天大地大妈咪最大 提交于 2019-11-27 20:56:14
问题 I added firebase analytics in my app just to try it out. I followed the steps in official guidelines. Now I have decided against it. I have undone whatever I had done to add it. (Removed entries from project level and app level build.gradle; removed all usages from source code.) But I am still getting logs like this when my app runs: I/FirebaseInitProvider: FirebaseApp initialization successful This leads me to believe that I haven't removed it completely. This is really a matter of concern