firebase-analytics

Firebase automatic screen reporting is enabled in xcode log

与世无争的帅哥 提交于 2019-12-08 15:32:04
问题 Is the following message when my app loads have any cause for concern. If I disabled FirebaseAutomaticScreenReportingEnabled does that have any consequence? Not much info about this online. Firebase automatic screen reporting is enabled. Call +[FIRAnalytics setScreenName:setScreenClass:] to set the screen name or override the default screen class name. To disable automatic screen reporting, set the flag FirebaseAutomaticScreenReportingEnabled to NO in the Info.plist 回答1: No concern; yes, is

How to delete an Analytics Event from Firebase

余生长醉 提交于 2019-12-08 14:56:41
问题 How can I delete an Analytics Event from Firebase? While I am testing I wrote some events in Firebase Analytics. Firebase by default orders all events alphabetically. So these testing events interrupts with original events. I could arrange them by count to push all the testing events to last. But it makes difficult to find the main events since those are not alphabetically sorted. I didn't find any options in Firebase dashboard to delete a event. Is there a way to delete the old events from

Firebase and wake locks issue in Android

最后都变了- 提交于 2019-12-08 13:18:46
问题 I'm using several Firebase products in an Android app: compile 'com.google.firebase:firebase-core:11.0.1' compile 'com.google.firebase:firebase-database:11.0.1' compile 'com.google.firebase:firebase-storage:11.0.1' compile 'com.google.firebase:firebase-auth:11.0.1' compile 'com.google.firebase:firebase-messaging:11.0.1' One or more of these products seems to be using the WAKE_LOCK permission. Possibly Analytics or FCM. I can understand where it's needed. The problem however is that in the

Xcode 9 <Warning> [Firebase/Analytics][I-ACS031011] Root view controller not found

ε祈祈猫儿з 提交于 2019-12-08 11:12:33
问题 Noticed following warning repeated multiple times on console when compiling project with Xcode 9. Appname [33380] <Warning> [Firebase/Analytics][I-ACS031011] Root view controller not found Other relevant details: Appname [33380] <Notice> [Firebase/Analytics][I-ACS023007] Firebase Analytics v.40002000 started Appname [33380] <Notice> [Firebase/Analytics][I-ACS023008] To enable debug logging set the following application argument: -FIRAnalyticsDebugEnabled (see --shortened url--) Appname [33380

Alowing Firebase Analytics domain names without allowing other Google services

风格不统一 提交于 2019-12-08 06:17:13
问题 I have an app which is meant to be used inside an internal network behind firewall. There is a requirement to enable Firebase Analytics to this app, and the network admin need to allow the Firebase endpoints without allowing all the Google Services. So far I came to know that I need to allow *.firebase.com and *.firebaseio.com in the firewall. But the challenge here is, will other Google sites be allowed through the firewall by allowing those domains? If so, what are the sites? I am posting

Firebase - is user deleted from Audience if his User property is changed

二次信任 提交于 2019-12-08 03:34:27
We have two Audiences based on the User Property which value is either true or false . And we send different Push Notifications to these 2 Audiences. At one point user's property value can be changed so I expect him to be deleted from one Audience and appear in another like it is described official docs : Using Remote Config with Analytics audiences has some limitations when audiences are not based on user properties. Specifically, users become permanent members of an audience after they are assigned to it. With user properties, you can define them so that they are only temporarily true: users

Xamarin iOS - Firebase Analytics is not available

冷暖自知 提交于 2019-12-07 13:18:45
问题 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

Firebase Analytics not showing screen names and events

岁酱吖の 提交于 2019-12-07 11:15:51
问题 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

Firebase additional permissions. Is user asked for acceptance

二次信任 提交于 2019-12-07 10:41:04
问题 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

How to add an android test device to Firebase?

℡╲_俬逩灬. 提交于 2019-12-07 06:35:04
问题 I am integrating Firebase analytics in my android app but I cant see in documentation or google how I can add a test device so It doesn't count on stats. I test a lot, so my main stats will be corrupted if it counts my own events In admob I do AdRequest adRequest = new AdRequest.Builder() .addTestDevice(AdRequest.DEVICE_ID_EMULATOR) .addTestDevice("70A9E11F73EREFF712A1B73AE2BC2945") .addTestDevice("1D18F0345E4C90E3625DB344BE64D02E") .build(); 回答1: I solved it with a new audience in Firebase