I have an Android application with a multi-module.
- app - Actual app which uses firebase's Analytics and crashlytics.
- data_source - An android module that uses firebase's crashlytics and firestore.
When I configure firebase in both modules, I need to paste the google-services.json file in both modules. But since the firebase project is first configured with the ID of the 1st module. It doesn't allow me to paste the same google-services.json file in the data_source module.
I get the error as -> "No matching client found for package name 'com.myproject.data_source'"
How can I use firebase services in the multi-modules app. I have 4 total modules and all using different firebase services based on there needs(Crashlytics as a common one).