Im trying to send notifications into an Android Emulator device using FCM Messages but I dont get no one notification. google app id is the same that inside google-services.json
this is what I get from console:
D/FA: Connected to remote service
V/FA: Processing queued up service tasks: 1
V/FA: Inactivity, disconnecting from AppMeasurementService
my build.gradle (Module:app):
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example.cris.firebasenotificationexam"
minSdkVersion 22
targetSdkVersion 23
....
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
apply plugin: 'com.google.gms.google-services'
compile 'com.google.firebase:firebase-messaging:9.0.2'
}
Anyone knows how to fix this problem?