问题描述
您只能apply plugin: 'com.google.gms.google-services'
在
模块中进行设置,而不能在其他模块中进行设置。
解决方法
这是我的项目 build.gradle :
buildscript {
...
dependencies {
...
classpath 'com.google.gms:google-services:3.1.0'
}
}
在模块的 build.gradle 之一中,我有以下内容:
apply plugin: 'com.google.gms.google-services'
导致以下错误:
Could not get unknown property 'LibraryVariants' for object of type com.android.build.gradle.LibraryExtension.
有趣的是,如果我将google-services
version
设置为3.0.0
,则此特定错误消失了,但是Gradle要求我将其他google库的版本降级,但是我真的不想这样做。
我该如何处理LibraryVariants
?