我是从GCM
迁移到FCM
,然后我在这里坚持了一些步骤:
当前的GCM库通过以下方式添加:
compile ("com.google.gcm:gcm-server:1.0.0")
之后,将生成gcm-server-1.0.0.jar
。
现在,对于FCM,我添加了以下依赖项(如官方fcm页面中的指示):
在build.gradle
dependencies {
compile 'com.google.firebase:firebase-messaging:15.0.0'
}
apply plugin: 'com.google.gms.google-services'
并在主build.gradle
dependencies {
classpath 'com.google.gms:google-services:3.0.0'
}
构建gradle后,库已生成如下:firebase-messenging-15.0.0.aar
因此,在创建新Notification
时,我无法在库中找到课程。
任何想法将不胜感激。谢谢。