提问人:anam zaki 提问时间:9/9/2022 更新时间:9/10/2022 访问量:1713
> 在 org.gradle.api.Project 类型的项目“:app”上找不到参数 [com.google.gms.google-services] 的方法 apply()
> Could not find method apply() for arguments [com.google.gms.google-services] on project ':app' of type org.gradle.api.Project
问:
我尝试升级gradle插件,也尝试删除gradle文件夹。但是错误在应用程序级别的build.gradle文件中的行:25中。
'com.google.gms.google-services'
根据错误,显示在那里。 希望能尽早回复
答:
2赞
AppSolves
9/10/2022
#1
问题是你写了
apply 'com.google.gms.google-services'
而不是
apply plugin: 'com.google.gms.google-services'
评论