Include Firebase Analytics in library

后端 未结 1 455
不思量自难忘°
不思量自难忘° 2020-12-11 16:26

I have multiple Android apps that all include a custom library. This library is the core of the apps, and each app just contains a main activity extending an activity from t

1条回答
  •  有刺的猬
    2020-12-11 17:29

    You should add the google-services.json file and apply the google-services plugin to your app module, not the library project.

    Most of the resources generated by the plugin are used dynamically and won't be necessary for the library to compile. However, if the library does use one of those resources explicitly (and therefore can't compile without it), the library can include a placeholder resource in its own strings.xml file which will eventually be overridden by the properly configured app.

    0 讨论(0)
提交回复
热议问题