we're using GCM for push notification for our app with target release to 26.
Using class GCMJobIntentService extends JobIntentService
for push notification services because of target release 26.
It's now android P released and push notification stopped working. When debugged found below exceptions
ActivityManager: Unable to start service Intent { act=com.google.android.c2dm.intent.REGISTER pkg=com.google.android.gsf (has extras) } U=0: not found
Due to exception above, it's returning blank gcm token and nothing working for push. Is there someone facing same issue, and if there is any solution to go with GCM without updating to FCM for now?