有什么办法可以从顶级项目gradle中删除“ classpath'com.google.gms:google-services:4.2.0”依赖项

时间:2019-07-25 07:51:29

标签: android firebase gradle

对于Firebase设置,现在我的项目gradle有classpath 'com.google.gms:google-services:4.2.0'

应用gradle包含apply plugin: 'com.google.gms.google-services'

我想将与Firebase相关的代码移至动态模块

所以我将apply plugin: 'com.google.gms.google-services'app Gradle移到了module Gradle

classpath 'com.google.gms:google-services:4.2.0'仍与完整项目有关。  有什么方法可以从顶级项目Gradle中删除此依赖项?

1 个答案:

答案 0 :(得分:0)

只需在buildscript文件内添加module/build.gradle块:

buildscript {
    repositories {
        //...
    }
    dependencies {
        //..
        classpath 'com.google.gms:google-services:4.2.0'
    }
}