https://api.vvhan.com/api/avatar/boy

技术博客分享

Firebase 云消息传递

  • content {:toc}

Firebase消息推送配置

配置接入firebase SDK

增加Google gradle插件:在根级(项目级)Gradle 文件 (build.gradle)

buildscript {
repositories {
// Check that you have the following line (if not, add it):
google() // Google's Maven repository
}
dependencies {
// ...
// Add the following line:
classpath 'com.google.gms:google-services:4.3.3' // Google Services plugin
}
}
allprojects {
// ...
repositories {
// Check that you have the following line (if not, add it):
google() // Google's Maven repository
// ...
}
}

在app module的grdle下添加