zo0r / react-native-push-notification

React Native Local and Remote Notifications
MIT License
6.75k stars 2.05k forks source link

Issue on Android : FirebaseMessaging.getInstance().getToken() and FirebaseMessaging.getInstance().deleteToken(); #2154

Open aditya-keri-betterhalf opened 2 years ago

aditya-keri-betterhalf commented 2 years ago

Question

My project was previously using the react-native-push-notification version 3.5.2. Today I upgraded the same to the latest version - 8.1.0. I also upgraded the @react-native-community/push-notification-ios to 1.10.1.

When I try to build the android app, I get the error : > Task :react-native-push-notification:compileDebugJavaWithJavac FAILED

The two main errors after this error are:

/Users/apple/Desktop/Push-Notifications/betterhalf-mobile-rn/node_modules/react-native-push-notification/android/src/main/java/com/dieam/reactnativepushnotification/modules/RNPushNotification.java:140: error: cannot find symbol
      FirebaseMessaging.getInstance().getToken()
                                     ^
  symbol:   method getToken()
  location: class FirebaseMessaging
/Users/apple/Desktop/Push-Notifications/betterhalf-mobile-rn/node_modules/react-native-push-notification/android/src/main/java/com/dieam/reactnativepushnotification/modules/RNPushNotification.java:283: error: cannot find symbol
      FirebaseMessaging.getInstance().deleteToken();
                                     ^
  symbol:   method deleteToken()
  location: class FirebaseMessaging

My firebase packages are as follows:

    "@react-native-firebase/app": "^10.0.0",
    "@react-native-firebase/crashlytics": "^10.0.0",
    "@react-native-firebase/in-app-messaging": "^10.0.0",
    "@react-native-firebase/messaging": "^10.0.0",
    "@react-native-firebase/perf": "^10.0.0",

Entire error log in gist : https://gist.github.com/aditya-keri-betterhalf/8b026335e442e9774c6960b4879c8f06

Zeroxys commented 2 years ago

hi @aditya-keri-betterhalf I have the same issue, how you solved it ?

kukuandroid commented 2 years ago

is it working ?

willnaoosmith commented 2 years ago

same here

vliedel commented 2 years ago

What solved this issue for me was to upgrade the firebaseMessagingVersion.

willnaoosmith commented 2 years ago

@vliedel which version did you use?

vliedel commented 2 years ago

I went from 19.0.1 to 21.1.0. See this commit: https://github.com/crownstone/crownstone-app/commit/fc1bc6505521ba0eb8fb739c516fef85983abe28

willnaoosmith commented 2 years ago

it worked, thanks!

romanravkov commented 2 years ago

What i need to do if i have to use firebaseMessagingVersion = 20.0.1?

erickcrus commented 1 year ago

Same issue

davmaene commented 9 months ago

got the same issue, but solved it by upgrading firebaseMessagingVersion from 17.3.0 to 21.1.0