如何以编程方式检查是否添加了(应用插件:“ com.google.gms.google-services”)

时间:2019-09-24 18:06:11

标签: android gradle gradle-plugin

我正在使用FirebaseMessagingService开发库模块。

我需要添加检查 apply plugin: 'com.google.gms.google-services' 是否已添加到应用程序模块中。

添加检查并取消编译(如果未添加)的最佳方法是什么。

如果这不可能,那么有什么方法可以在运行时环境中以编程方式进行检查?

我试图添加类似这样的内容

if (pluginManager.hasPlugin('com.google.gms.google-services')) {
    println "Project $it.name: google plugin applied"
} else {
    println "no com.google.gms.google-services plugin applied"
}

但是这种情况永远不会返回 true。

0 个答案:

没有答案