android - How to log event parameters to Firebase console -
this question has answer here: firebase analytics custom events params 6 answers i have started using firebase app's analytics , i'm having issues trying view custom parameters associated events. the problem when creating audience, can see events cannot drill down parameters (no parameters shown associated events) as example, i'd register event "add retail favourite" , pass, parameter, id of retail. final goal assess how many users had added retail favourite list. for ios i'm using piece of code: [firanalytics logeventwithname:@"add_retail_to_favorite" parameters:@{@"id_retail":idretail}]; and android: bundle bundle = new bundle(); bundle.putstring(firebaseanalytics.param.item_id, string.valueof(mid)); mfirebaseanalytics.logevent("pv_detail", bundle); am doing wrong? thanks support curre...