I'm trying to integrate AWS SNS push services with FCM in my Android app.
When I'm trying to send a push message through SNS online console, I get this error log:
E/FirebaseInstanceId: Failed to resolve target intent service, skipping classname enforcement
E/PushListenerService: From: ************ /* My Sender ID*/
E/PushListenerService: Message: hola
E/FirebaseInstanceId: Error while delivering the message: ServiceIntent not found.
I've searched a bit online, and I found a seemed to be a very popular answer, with 3 services with the classes GcmIntentService
, GcmIDListenerService
, RegistrationIntentService
. I've added those classes and services into my app, but I still don't get any push notifications from SNS.
I also wasn't sure if it is the right solution for me, since I'm not only use FCM Services, but also SNS Services.
These are my existing receivers and services in my manifest:
<receiver android:name="com.google.android.gms.gcm.GcmReceiver"
android:exported="true"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE"/>
<category android:name="com.intap.appme" />
</intent-filter>
</receiver>
<service android:name=".PushListenerService"
android:exported="false" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE"/>
</intent-filter>
</service>
About the push notifications. When I'm sending it through the SNS online console, I get the above log error, but when I'm sending it through the Firebase online console, the device gets the push notification, but I still get this log, which is the first and the last lines of the log above:
E/FirebaseInstanceId: Failed to resolve target intent service, skipping classname enforcement
E/FirebaseInstanceId: Error while delivering the message: ServiceIntent not found.
build.gradle dependencies:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
wearApp project(':wear')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.1.1'
compile 'com.android.support:design:24.1.1'
compile fileTree(dir: 'libs', include: ['activation.jar'])
compile fileTree(dir: 'libs', include: ['additionnal.jar'])
compile fileTree(dir: 'libs', include: ['mail.jar'])
compile 'com.amazonaws:aws-android-sdk-core:2.2.18'
compile 'com.amazonaws:aws-android-sdk-s3:2.2.18'
compile 'com.amazonaws:aws-android-sdk-ddb:2.2.18'
compile 'com.amazonaws:aws-android-sdk-ddb-mapper:2.2.18'
compile 'com.amazonaws:aws-android-sdk-ec2:2.2.18'
compile 'com.google.android.gms:play-services-plus:9.0.1'
compile 'com.amazonaws:aws-android-sdk-sns:2.2.18'
compile 'com.google.android.gms:play-services-gcm:9.0.1'
compile 'com.android.support:multidex:1.0.1'
apply plugin: 'com.google.gms.google-services'
}
Could you please help me figure it out and solve it?
See Question&Answers more detail:
os