如何将Google Services插件应用于我的应用模块build.gradle.kts文件的底部?
使用文件顶部的plugins {}
块进行警告,并在文件下方使用相同的块会导致错误,因为该块不能两次使用。
在kotlin build脚本中应用Google Services插件与您在Groovy中执行的方式不同。
// Add this at the bottom of your file to actually apply the plugin
apply(plugin = "com.google.gms.google-services")
apply
函数使用提供的给定选项以映射为单位。