1

I integrated firebase analytics in my app. Have set some User Properties too. I have registered those properties in console and it works fine but except for now property. Name of that beautiful property is first_name. :).

I don't find it in Automatically collected user properties.

I can't see first_name property logged in 'Debug View'. I see all properties I added along with them though.

Any clues ?

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
cgr
  • 4,578
  • 2
  • 28
  • 52
  • `first_name` is not one of the [documented reserved user property names](https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.UserProperty) – Bob Snyder Nov 13 '17 at 20:58
  • yeah, any clue why it is not logged then? – cgr Nov 13 '17 at 21:00
  • Have you exceeded the limit of 25? – Bob Snyder Nov 13 '17 at 21:02
  • Thanks for quick response. No, I have only 5 User Props added in console. – cgr Nov 13 '17 at 21:03
  • This isn't much help, but I just tried reporting `first_name`. Got this in the logcat: `D/FA: Setting user property (FE): first_name, Bob` and see the user property in the DebugView. This is with Firebase 11.6.0. – Bob Snyder Nov 13 '17 at 21:18
  • I can see it as well in my logs on terminal: "/FA-SVC ( 6493): User property set: first_name, Guru.". But I don't see it in Debug View. Well, I have 11.0.1 integrated. Not sure if that makes any difference. I can try out that. – cgr Nov 13 '17 at 21:21
  • @BobSnyder tried with 11.6.0, the latest. It does not work yet. The same code it works for another property, "debug_first_name" in this code: firebaseAnalytics.setUserProperty(“first_name”, getFirstName());
 firebaseAnalytics.setUserProperty("debug_first_name", getFirstName()); – cgr Nov 14 '17 at 08:01
  • Thanks for help @BobSnyder. It seem to be working. It does not show up in Debug View, not sure why though, but in Events section I could find it. – cgr Nov 14 '17 at 08:19

1 Answers1

2

It did not require any fix but just that it was not logged in Debug View for some reason. But I could see it in Events. Click on Events on on left pane -> Add Filter -> User Property -> first_name.

cgr
  • 4,578
  • 2
  • 28
  • 52