I am completely new to Firebase analysis. I am trying to send an event that shows the statistics of my API call.
endTime = System.currentTimeMillis() - startTime; // [START event] Bundle params = new Bundle(); params.putString(FirebaseConstants.PHONE_NUMBER, Utility.getPhone()); params.putLong(FirebaseConstants.DURATION, endTime); FirebaseAnalytics .getInstance(getContext()) .logEvent(FirebaseConstants.BALANCE_CHECK, params); // [END event]
But I only see the name of the event, the number of users and the number of matches. 24 hours have passed and I do not see my custom properties. For reference, I want to see the phone number (Utility.getPhone ()) and the time that the API call is making (end time). It is possible, it is possible that it is not sending anything, because I created my own parameters in the FirebaseConstans class
android events firebase firebase-analytics
Rustam Ibragimov May 29 '16 at 8:49 a.m. 2016-05-29 08:49
source share