I am using react-native-fcm into my React-Native application. I am using below method to get device token for the push.
FCM.getFCMToken().then((token) => {
alert('FCM Token: ' + token);
console.log(token);
});
The issue is, I am getting a token in iPhone application, but when I tried in Android, the method is not called.
I follow each and every step which is suggested by react-native-fcm. Can anyone help me to solve the issue?