我正在使用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。