将cordova-plugin-fcm插件添加到我现有的cordova android项目后,gradle构建因以下错误而失败
请通过更新google-services插件的版本(https://bintray.com/android/android-tools/com.google.gms.google-services/提供有关最新版本的信息)或将com.google.android.gms的版本更新为9.0.0来修复版本冲突
我该如何解决此错误?
答案 0 :(得分:0)
删除android平台 在FCMPlugin.gradle(插件文件夹)上,像这样编辑:
classpath 'com.google.gms:google-services:4.1.0'
compile 'com.google.firebase:firebase-core:11.0.4'
然后在plugin.xml文件中
<framework src="com.google.firebase:firebase-core:11.0.4" />
<framework src="com.google.firebase:firebase-messaging:11.0.4" />