firebase-analytics

How to prevent Play Store testing from affecting Firebase Analytics

三世轮回 提交于 2019-12-06 09:16:32
问题 I just launched a new app and I am using Firebase Analytics. However, every time I upload a new release to the play store, it is automatically tested by Google on 11 devices. Which is great! Is there a way to prevent those tests from impacting the analytics? I am starting with a small user base, so it can affect it greatly. I also created an anonymous Auth. Is there a way to prevent it from creating anonymous accounts for those pre-release tests? Can I identify them so I can delete them on

BigQuery not showing any dataset for a linked Firebase Analytics Event logs

隐身守侯 提交于 2019-12-06 06:22:45
问题 I linked my account to Big Query but Firebase Analytics events are not getting loaded into BigQuery automatically. "No dataset found" warning is shown. My work progress was attached below please find. I have getting firebase Analytics event log in debugView console. for your reference Link Big Query with my application "No dataset found in this project" warning is shown in Big Query Web UI i have added the FireBase event log code in my application button onClick. Not sure what other steps i

Firebase Screen Tracking calls “screen_view” event twice

江枫思渺然 提交于 2019-12-06 04:22:50
问题 I try to use Screen Tracking feature of Firebase Analytics. Here's the code of a screen in my app. I'd like to track transitions to this screen, and set the original screen name in viewDidAppear . import UIKit import Firebase class Section1412: UIViewController { override func viewDidAppear(_ animated: Bool) { super.viewDidAppear(true) Analytics.setScreenName("Sceeen1.4.1.2", screenClass: "Section1412") } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of

Xamarin iOS - Firebase Analytics is not available

半城伤御伤魂 提交于 2019-12-06 03:53:55
I have download the example project and library from this link: Xamarin Firebase but after 2 days of configuration i get this error when i launch the app: [Firebase/Core][I-COR000022] Firebase Analytics is not available. I did not find documentation related to this error for Xamarin iOS Firebase Analytics and can not find a solution. I have reference the same library of the example project, checked the GoogleService-Info.plist and insert it in the project as documentation, called the App.Configure (); . Nothing to do, does anyone have any idea? Resolved! Firebase Analytics requires 3

All FirebaseAnalytics setCurrentScreen() events are logged under view_item

痴心易碎 提交于 2019-12-06 03:47:09
问题 I'm able to log custom events to Firebase Analytics but trying keep track of my custom views following what official doc, docs 2 says, all my logs are recorder under view_item event. On firebase's release news I found this: In addition to automatic screen tracking, you can manually track screens using the FirebaseAnalytics#setCurrentScreen method. This adds the firebase_screen parameter to every event logged while those screens are visible to app users. If I want to keep track of my views,

How to define an Audience with Firebase Analytics?

[亡魂溺海] 提交于 2019-12-06 03:05:53
问题 I want to keep track of my app's Audience by separating them with a custom attribute. Every user have a list of permissions. I want to be able to separate them with this attribute when then login into my app. Currently, all the user falls into the category "Alls Users" instead of their separate categories... I log in using CEO more than 10 times and I waited few days... Still, I only see the audience name 'All Users' increments instead of my custom 'CEO' audience. Here's how I setup the

Create audience based on dynamic user property

梦想的初衷 提交于 2019-12-06 01:48:19
问题 I have an app in which a user can have a "paid" or "free" status. A user can switch from "free" to "paid" (if he does an in app purchase) or from "paid" to "free" if he stops to pay its subscription. Can I use a dynamic user property to track the information in Firebase ? In the doc it is not clear if it is allowed to have a dynamic user property value that can change over time (https://support.google.com/firebase/answer/6317519?hl=en) If it is not a good practice, how is it possible to do

Firebase Analytics not showing screen names and events

僤鯓⒐⒋嵵緔 提交于 2019-12-05 17:39:55
I'm migrating from old google analytics to Firebase Analytics and now I'm tracking the screens using this: mFirebaseAnalytics.setCurrentScreen(SectionManager.getInstance().getCurrentActivity(), name, null /* class override */); And also tryed using this: Bundle params = new Bundle(); params.putString(FirebaseAnalytics.Param.ITEM_CATEGORY, "screen"); params.putString(FirebaseAnalytics.Param.ITEM_NAME, name); mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.VIEW_ITEM, params); And I'm tracking events using this: Bundle params = new Bundle(); params.putString("category", "command"); params

Android Version Conflict for Google Services

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-05 16:46:29
I've searched for a lot of solutions to this, but none fit my exact case. I am getting this error on Gradle Sync: Error:Execution failed for task ':app:processDebugGoogleServices'. Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/ ) or updating the version of com.google.android.gms to 11.4.2. this is in my build.gradle (app) dependencies. dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation

Firebase additional permissions. Is user asked for acceptance

六月ゝ 毕业季﹏ 提交于 2019-12-05 16:45:03
I'm currently working on integrating Firebase Analytics into my android app. The problem that I'm encountering is that Firebase adds some new permissions. These permissions are permission.WAKE_LOCK com.google.android.c2dm.permission.RECEIVE My question is: What happens when the user wants to (automatically) update my app in pre Marshmallow versions? Is he asked for permission or not, because it is a normal permission? In post Marshmallow the documentation is quite clear. It simply doesn't ask the user at all, because it is a normal permission ( https://developer.android.com/guide/topics