I have the old android app on Play Store which I am not going to update anymore because of making a new app.
Do I need to migrate GCM to FCM in my old andro
Existing installs of client-side apps receiving notifications will continue to work for the foreseeable future. You don't need to get new tokens for all users. The existing tokens from GCM will continue to work
But from mid-April:
To compile against the new SDK/Google Play Services, you will need to make changes to your client app to migrate to Firebase Cloud Messaging from GCM. This involves changes to the build.gradle
, to AndroidManifest.xml
and to your code, as described in Migrate a GCM Client App for Android to Firebase Cloud Messaging.
You need to update your client code and migrate to FCM
. Because it is officially announced to do migration and it is very likely that from a point, for example by one of the android updates, they stop supporting old api callbacks
and if so you will lose part of your users.
So my advice is to do the migration as it has been long enough so far that they had supported GCM
along with supporting FCM
and they can't and won't do it forever.