如何在 Kotlin 构建脚本中应用 Google 服务插件
How to apply the Google Services Plugin in a Kotlin Buildscript
如何将 Google 服务插件应用到我的应用程序模块 build.gradle.kts 文件的底部?
使用文件顶部的 plugins {}
块会发出警告,使用文件下方的同一块会导致错误,因为此块不能使用两次。
在 Kotlin 构建脚本中应用 Google 服务插件与您在 Groovy 中的方式不同。
// Add this at the bottom of your file to actually apply the plugin
apply(plugin = "com.google.gms.google-services")
apply
函数使用作为地图提供的给定选项应用插件或脚本。
如何将 Google 服务插件应用到我的应用程序模块 build.gradle.kts 文件的底部?
使用文件顶部的 plugins {}
块会发出警告,使用文件下方的同一块会导致错误,因为此块不能使用两次。
在 Kotlin 构建脚本中应用 Google 服务插件与您在 Groovy 中的方式不同。
// Add this at the bottom of your file to actually apply the plugin
apply(plugin = "com.google.gms.google-services")
apply
函数使用作为地图提供的给定选项应用插件或脚本。