I'm using Facebook Analytics in my app and wants to analyse which 'signup method' from Facebook and Email/Password users are using more.
For this I followed the docs here.
Here's what I tried:
FacebookSdk.sdkInitialize(getApplicationContext());
AppEventsLogger.activateApp(this);
logger = AppEventsLogger.newLogger(this);
Bundle bundle1 = new Bundle();
bundle1.putString("methodUsed", "email_password");
logger.logEvent("signup_method", bundle1);
Though the event got shown in the 'Events' tab of the dashboard, the space under the 'Value' row is empty which should have been "facebook"
.
Please let me know if I'm doing anything incorrectly here and how can I get the value also shown in the dashboard?