Reputation: 5348
In my current application, I am using multiple trackers to report my events. However, while migrating to Firebase we found that we can configure only one application corresponding to a Mobile app. Previously I was using multiple trackers to report events to customer and marketing company accounts.
Upvotes: 0
Views: 906
Reputation: 5767
It is not possible to report multiple Firebase account simultaneously with Firebase Analytics.
You have few options to emulate multiple trackers in Google Analytics:
You can export the Firebase Analytics data to BigQuery and DataStudio and provide customized access to different parties. This approach gives you a lot of flexibility but its quite involved.
As you suggested you can use Google Tag Manager and send data to multiple Google Analytics accounts. This approach is simpler but it has some limitations. First, you will not get as detailed app reporting from Google Analytics account as you would from Firebase Analytics. Since the data is send independently to each account there might be discrepancies between the accounts. You will be uploading the data multiple times, once for each account, as every account will needs the data uploaded separately. This uses more mobile data and system resources on the device.
Upvotes: 1